hi,all
I'm a newbie of Ant, now I have a question, I want to define classpath, but
they aren't in one place, like this
<!-- lib directory-->
<property name="lib.dir" value="D:/Java/hibernate" />
<!-- define classpath -->
<path id="project.class.path">
<fileset dir="${lib.dir}">
<include name="*.jar"/>
</fileset>
<pathelement location="${ class.dir}" />
</path>
but now my value should be "D:/Java/hibernate" &="D:/Java/hibernate/lib",
should I write them like this?
<property name="lib.dir"
value="D:/Java/hibernate;D:/Java/hibernate/lib" />
or
<property name="lib.dir" value="D:/Java/hibernate" />
<property name="lib.dir" value="D:/Java/hibernate/lib" />
I know I could copy all the jars to one directory, but I think it's quirk,
so I came here to find better way.Thanks!