I'm new to ant and having a terrible time getting my classpaths defined
correctly.
<target name="t1" depends="d1" >
<javac srcdir="${src}/t1/src/Java"
destdir="${output}/t1/Java" >
<classpath>
<path refid="classpath"/>
<pathelement path="${output}/d1/Java"/>
<pathelement path="${3rdParty}/a1/solaris/lib"/>
</classpath>
</javac>
The problem is that I get compilation errors when compiling target xxxx
telling me the class files under the ${3rdParty}/a1/solaris/lib directory
aren't being seen. The class files are located under
lib/com/oss/{a1,util}/*.class ...
I hope this is relatively clear!
Thanks for any help.
Nolan Ring
|