You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by "Dean A. Hoover" <dh...@rochester.rr.com> on 2003/02/10 03:38:50 UTC

newbie: jjtree task

I'm using redhat 8.0 with ant 1.5.1 already installed. I am new to ant.
I am building a jjtree based parser which I have been building
"by hand" up to this point. I now want to use ant for this purpose.
I am using jjtree version 2.1 and j2sdk1.4.1_01

I set up the following build.xml file:
===
<project name="meds" basedir="." default="dojjtree">
    <target name="dojjtree">
        <jjtree
          target="src/com/fermataintl/meds/dynatext/DynaText.jjt"
          javacchome="/usr/java/javacc"
          outputDirectory="src/com/fermataintl/meds"
        />
    </target>
</project>
===
This is what I get when I run ant:
===
Buildfile: build.xml

dojjtree:

BUILD FAILED
file:/home/dhoover/devel/meds/build.xml:7: Could not create task or type 
of type: jjtree.

Ant could not find the task or a class this task relies upon.

This is common and has a number of causes; the usual
solutions are to read the manual pages then download and
install needed JAR files, or fix the build file:
 - You have misspelt 'jjtree'.
   Fix: check your spelling.
 - The task needs an external JAR file to execute
   and this is not found at the right place in the classpath.
   Fix: check the documentation for dependencies.
   Fix: declare the task.
 - The task is an Ant optional task and optional.jar is absent
   Fix: look for optional.jar in ANT_HOME/lib, download if needed
 - The task was not built into optional.jar as dependent
   libraries were not found at build time.
   Fix: look in the JAR to verify, then rebuild with the needed
   libraries, or download a release version from apache.org
 - The build file was written for a later version of Ant
   Fix: upgrade to at least the latest release version of Ant
 - The task is not an Ant core or optional task
   and needs to be declared using <taskdef>.

Remember that for JAR files to be visible to Ant tasks implemented
in ANT_HOME/lib, the files must be in the same directory or on the
classpath

Please neither file bug reports on this problem, nor email the
Ant mailing lists, until all of these causes have been explored,
as this is not an Ant bug.

Total time: 0 seconds
===
Remember, I did not install ant myself, it is part of rh8. I do not know
where ANT_HOME is, and I wouldn't know what to put in there even
if I did. ant works for me for javac tasks. Can anyone give me some
hints on how to get this working?

Thanks.
Dean Hoover



Re: newbie: jjtree task

Posted by Martin <mg...@hotmail.com>.
> I set up the following build.xml file:
> ===
> <project name="meds" basedir="." default="dojjtree">
>     <target name="dojjtree">
>         <jjtree
>           target="src/com/fermataintl/meds/dynatext/DynaText.jjt"
>           javacchome="/usr/java/javacc"
>           outputDirectory="src/com/fermataintl/meds"
>         />
>     </target>
> </project>

1)%ANT_HOME% is the location where to installed be sure to set this up as an
environment variable
2)Also Ant cannot find (from where the build.xml is executing..) these
files/directories
           "src/com/fermataintl/meds/dynatext/DynaText.jjt"
           "/usr/java/javacc"
           "src/com/fermataintl/meds"

verify the existence of all of these directories and files and let us know..
-M

>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: ant-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: ant-user-help@jakarta.apache.org
>