Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
Gump2-2.3
-
None
Description
It seems the following configuration which was working fine with Gump is no longer working with Gumpy:
<ant buildfile="samples/servlet/build.xml" target="dist">
[...]
<depend property="jstl.jar" project="jstl-jsp-12" id="jstl"/>
<depend property="standard.jar" project="jstl-jsp-12" id="standard"/>
[...]
</ant>
It seems the properties are correctly created by the classpath does not include correctly the 2 jar.
A possible workaround is:
<ant buildfile="samples/servlet/build.xml" target="dist">
[...]
<property name="jstl.jar" reference="jar" project="jstl-jsp-12" id="jstl"/>
<property name="standard.jar" reference="jar" project="jstl-jsp-12" id="standard"/>
[...]
</ant>
<depend project="jstl-jsp-12" id="jstl"/>
<depend project="jstl-jsp-12" id="standard"/>
But it's not as nice as before...
Thanks
-Vincent