Folks,
Here is my build :
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>ant</groupId>
<artifactId>ant-nodeps</artifactId>
<version>1.6.5</version>
</dependency>
<dependency>
<groupId>antlr</groupId>
<artifactId>antlr</artifactId>
<version>2.7.4</version>
</dependency>
</dependencies>
<executions>
<execution>
<phase>compile</phase>
<configuration>
<tasks>
<ant>
<property name="build.dir" value="${
project.build.directory}"/>
</ant>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
and antrun complains
Embedded error: The following error occurred while executing this line:
M:\dtran-uscud-dtran-phoenix-i\EJB\maven\openjms\build.xml:299: Could not
create
task or type of type: antlr.
Ant could not find the task or a class this task relies upon.
Any suggestions?
Thanks