You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by co...@runbox.com on 2003/12/31 22:50:53 UTC

Calling JavaCC Ant Task from Maven

Hi, how does one call JavaCC Ant Task from Maven project.xml/project.properties?

Thanks,

-Conrad


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org


Re: Calling JavaCC Ant Task from Maven

Posted by "Jefferson K. French" <je...@frenches.org>.
You don't call Ant tasks from the project files, but you can do this
in maven.xml:

<project xmlns:ant="jelly:ant">
  ...
  <preGoal name="java:compile">
    <ant:javacc .../>
  </preGoal>
  ...
</project>

You can make it a pre or post goal to something else if you want.

  Jeff

On Wed, 31 Dec 2003, at 21:50:53 [GMT GMT] conradwt@runbox.com wrote:

> Hi, how does one call JavaCC Ant Task from Maven project.xml/project.properties?

> Thanks,

> -Conrad


> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
> For additional commands, e-mail: users-help@maven.apache.org

-- 
mailto:jeff@frenches.org



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@maven.apache.org
For additional commands, e-mail: users-help@maven.apache.org