I have the following lines in my build.xml Ant script for my Java project. I was formerly using the built-in Ant version for my Eclipse Helios IDE (I believe it was Ant 1.7.1). These specifics lines from the file were to load some properties from an external file and for my compile target. The file my_build.properties contained the variables ${jar.one.path} and ${jar.two.path}. These jars were required for the compile classpath . In the most realistic use case, these two jars will be in separate directories. This build script worked perfectly.

...
<properties file="my_build.properties" />
...
<target name="compile>
    <javac srcdir="src" destdir="build" debug="true"
        includeantruntime="false" source="1.6">
        <classpath>
            <pathelement location="${jar.one.path}" />
            <pathelement location="${jar.two.path}" />
        </classpath>
    </javac>
</target>
...

Recently I upgraded my Ant version to the latest version 1.8.2, installed in a central location on my machine. When I ran my Ant build script with the newer version, I got numerous compile errors. All of the classes within the jars were no longer found by javac and therefore there was an error for each line of code relying on such a class.

I did manage to discover a solution. Before executing the Javac task in my compile target, I copied each of the jars into the same directory and defined the classpath to look for all .jar files in that directory. This was what my compile target became:

<target name="compile>
    <copy file="${jar.one.path}" todir="lib" />
    <copy file="${jar.two.path}" todir="lib" />
    <javac srcdir="src" destdir="build" debug="true"
        includeantruntime="false" source="1.6">
        <classpath>
            <fileset dir="lib">
                <include name="**/*.jar" />
            </fileset>
        </classpath>
    </javac>
</target>

This solution works so therefore I've solved my problem and I will not need to tweak my code any further. However, why this was even a problem in the first place really puzzles me. I'm curious to know the true reason why my the javac classpath would work in Ant 1.7.1 but not Ant 1.8.2. Was this simply a non-backwards compatible or deprecated aspect of Ant 1.8.2, some sort of Ant bug, or something else?

link|improve this question

2  
Both snippets you have provided so far work perfectly with Ant 1.8. Therefore I think your problem is rooted somewhere else in the build process. – A.H. Nov 27 '11 at 11:27
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.