DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=21054>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=21054
JavaCC task doesn't support JavaCC 3.0
Summary: JavaCC task doesn't support JavaCC 3.0
Product: Ant
Version: 1.5.3
Platform: All
OS/Version: Other
Status: NEW
Severity: Major
Priority: Other
Component: Optional Tasks
AssignedTo: dev@ant.apache.org
ReportedBy: kgambrel@seebeyond.com
The task looks for classes with the old sun labs packaging convention, not
netbeans:
< cmdl.setClassname("COM.sun.labs.javacc.Main");
---
> cmdl.setClassname("org.netbeans.javacc.parser.Main");
338c338
< File f = new File(home, "JavaCC.zip");
---
> File f = new File(home, "javacc.jar");
343c343
< f = new File(home, "bin/lib/JavaCC.zip");
---
> f = new File(home, "bin/lib/javacc.jar");
347c347
< throw new BuildException("Could not find a path to JavaCC.zip from '"
+ home + "'.");
---
> throw new BuildException("Could not find a path to javacc.jar from '"
+ home + "'.");
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org
|