문제

I'm writing a simple JDBC driver that should be compliant to JDBC-3 (so it can be used with Java 5 and 6). My build environment is Java 6 and I use Maven 3. I do have Java 5 installed, so I could access Java 5's rt.jar.

Is there a save way to compile Java code with Java 6's javac against Java 5's rt.jar?

Yes, I'm looking for a hack here.

도움이 되었습니까?

해결책

Did you try to configure the maven-compiler-plugin, and especially the <bootclasspath> attribute, as shown here?

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