http://nagoya.apache.org/bugzilla/show_bug.cgi?id=1445
*** shadow/1445 Fri Apr 20 14:20:51 2001
--- shadow/1445.tmp.11238 Fri Apr 20 14:20:51 2001
***************
*** 0 ****
--- 1,38 ----
+ +============================================================================+
+ | XML Parser bug for commented tags |
+ +----------------------------------------------------------------------------+
+ | Bug #: 1445 Product: Ant |
+ | Status: NEW Version: 1.3 |
+ | Resolution: Platform: PC |
+ | Severity: Normal OS/Version: |
+ | Priority: Component: Core |
+ +----------------------------------------------------------------------------+
+ | Assigned To: [EMAIL PROTECTED] |
+ | Reported By: [EMAIL PROTECTED] |
+ | CC list: Cc: |
+ +----------------------------------------------------------------------------+
+ | URL: |
+ +============================================================================+
+ | DESCRIPTION |
+ Commenting out the following target causes Ant's parser to spew:
+
+ <target name="run2" depends="ianywhere" >
+ <java classname="Startup">
+ <classpath>
+ <pathelement path="${classpath}" />
+ <pathelement location="${buildDir}" />
+ </classpath>
+ <arg value="-Sr" />
+ <arg value="MyStartupModule" />
+ <arg value="--" />
+ <arg value="fred" />
+ <arg value="bob" />
+ </java>
+ </target>
+
+
+ It complains about line 9 above (containing "--") with the following message:
+ Next character must be ">" terminating comment .
+
+ Hope this servers some use,
+ greg.fenton