Domanda

How do you have to configure maven to pull down the JDK5 version of BoneCP?

È stato utile?

Soluzione

You need to specify a classifier in the dependency

<dependency>
    <groupId>com.jolbox</groupId>
    <artifactId>bonecp</artifactId>
    <version>0.7.1.RELEASE</version>
    <classifier>jdk5</classifier>
</dependency>

Version 0.8.0-rc1 works on JDK 5

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top