I want to execute jar in command line, but I can't solve how to add third party jar in classpath. Now the third party jar are in the current directory.
java -cp `pwd`/args4j-2.0.6.jar:`pwd`/commons-lang3-3.3.2.jar -jar eval.jar I still get the ClassNotFoundException which indicates that the JVM can't find the third party jars.

