DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=29974>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=29974

In <Ant> task <reference> no longer copies refs based on refs

           Summary: In <Ant> task <reference> no longer copies refs based on
                    refs
           Product: Ant
           Version: 1.6.1
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Core tasks
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


If a build file defines the following:
  <path id="project.classpath">
    <fileset refid="required_libs"/>
    <pathelement location="../classes"/>
  </path>
  <path id="test.classpath">
    <pathelement location="${rootdir}/test/testframework.jar"/>
    <path refid="project.classpath"/>
  </path>

And a target calls:
  <target name="test" description="Runs all the tests.">
    <ant antfile="${rootdir}/generic.xml" inheritAll="true" target="test">
        <reference refid="test.classpath"/>
    </ant>
  </target>

Then - generic.xml fails with undefined reference "project.classpath". In Ant 
1.5.3, it works fine.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to