I have an eclipse.classpath file that looks like this:
<?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" path="src"/> <classpathentry kind="src" path="test"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="output" path="bin"/> <classpathentry kind="lib" path="/libraries/jee/servlet-api.jar"/> <classpathentry kind="lib" path="/libraries/junit/junit-4.6.jar"/> <classpathentry kind="lib" path="/libraries/log4j/log4j-1.2.15.jar"/> </classpath>
I would like to add the whole jars directory to the class path - I like eclipse (or rather, our ant-based build process, which uses the .classpath format) to know several jars that are in the same directory without specifying them directly. How can i do this?
java classpath eclipse jar
ripper234
source share