Ant Paths(III)
18 February 2008It is assumed that you have gone through first 2 parts of this topic.
Via nested
<path id="base.path"> <pathelement path="${classpath}"/> <fileset dir="lib"> <include name="**/*.jar"/> </fileset> <pathelement location="classes"/> </path> <path id="tests.path"> <path refid="base.path"/> <pathelement location="testclasses"/> </path>
The shortcuts mentioned earlier for
<path id="base.path"> <pathelement path="${classpath}"/> </path>
can also be written as:
<path id="base.path" path="${classpath}"/>
Related Posts:
- No related posts
Top Of Page | Trackback
If you found this page useful, consider linking to it. Simply copy and paste the code below into your web site.
It will look like this: Ant Paths(III)