Message: A new issue has been created in JIRA.
--------------------------------------------------------------------- View the issue: http://issues.apache.org/jira/browse/GUMP-46 Here is an overview of the issue: --------------------------------------------------------------------- Key: GUMP-46 Summary: Gumpy not creating valid <ant> classpath Type: Bug Status: Unassigned Priority: Major Project: Gump Components: Python Assignee: Reporter: Vincent Massol Created: Fri, 2 Apr 2004 1:23 AM Updated: Fri, 2 Apr 2004 1:23 AM 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 --------------------------------------------------------------------- JIRA INFORMATION: This message is automatically generated by JIRA. If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa If you want more information on JIRA, or have a bug to report see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
