문제

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

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top