vote up 3 vote down star

I have an eclipse's .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'd like to add a whole directory of jars to the classpath - I like eclipse (or more precisely, our ant-based build process that uses .classpath format) to know several jars that reside in a single directory, without specifying them directly. How can I do that?

flag

63% accept rate

4 Answers

vote up 1 vote down

I'm not sure eclipse can do that itself.

You could try

  1. Move to Maven for you build system and then it's eclipse:eclipse command will generate the .classpath file for you
  2. Get ant to modify the .classpath after a build. After all, it's just xml
link|flag
It's a tactical problem - if there existed a built-in option, I'd have used it. For now, I'll just list all the jars manually. Thanks – ripper234 Jul 2 at 12:17
vote up 0 vote down

Place all the jars under one libraries folder

use javac -classpath c:\com\whichever\libraries* program1.java

link|flag
vote up 0 vote down

Eclipse does not work that way I'm afraid. The best solution I can think of is to generate the .classpath file from script which scans the directory for jars.

link|flag
vote up 0 vote down

There's a developerworks article that show how to implement a custom classpath container that exposes the contents of a directory. You'll need to register to view the article and download the sources.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.