I have this code:
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<id>ant-execute</id>
<configuration>
<target name="compile">
<mkdir dir="${xbpm}\lib.dir" />
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
When I execute the command: mvn antrun:run@ant-execute
, the build fails with the following error:
Could not find goal 'run@ant-excecute' in plugin org.apache.maven.plugins:maven-antrun-plugin:1.8 among available goals help, run -> [Help 1]