I want to compile my .java\'s (several) into one .jar that are compatible with at least Java 1.6 and newer, preferably Java 1.5 and ne
.jar
Java 1.6
Java 1.5
You can use javac -target 1.5 .
javac -target 1.5
If you're using a build system, Eclipse or some other IDE to build jars, please specify which one.