I am trying to compile a java file on windows that contains an import statement to classes inside another jar file.
The classes inside the jar file is compiled with java version 1.5, and the javac command is using java version 1.7.
What would be the correct syntax for the javac command to include the referenced jar file?
It does not seem to matter what I do, it just fails with a package does not exist exception.
Thanks!