Question

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.

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top