Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.0-RC
-
None
-
None
Description
Changed the thirdparty.classpath property to be used as a refid and not as location .
In this way we can setup more than one jar in the thirdparty.classpath
So the thirdpath jar would be used in sample like this
<property environment="env"/>
<path id="sample.thirdpart.classpath">
<pathelement location="thirdpart1.jar"/>
<pathelement location="thirdpart2.jar"/>
</path>
<property name="thirdparty.classpath" refid="sample.thirdpart.classpath"/>
<import file="../../common_build.xml"/>