我正在使用Maven AntRun插件1.6,並且從他們的示例中,我無法編碼以下要執行的ant任務。Maven Antrun不執行任務
URL示例:http://maven.apache.org/plugins/maven-antrun-plugin/examples/classpaths.html
我剛收到以下消息時,我執行MVN antrun:運行。 沒有定義螞蟻目標 - 跳過
我在做什麼錯?
這裏是我的POM:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>compile</id>
<phase>compile</phase>
<configuration>
<target>
<property name="compile_classpath" refid="maven.compile.classpath" />
<property name="runtime_classpath" refid="maven.runtime.classpath" />
<property name="test_classpath" refid="maven.test.classpath" />
<property name="plugin_classpath" refid="maven.plugin.classpath" />
<echo message="compile classpath: ${compile_classpath}" />
<echo message="runtime classpath: ${runtime_classpath}" />
<echo message="test classpath: ${test_classpath}" />
<echo message="plugin classpath: ${plugin_classpath}" />
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
謝謝!這是關於如何打電話給pom的誤解。 – 2011-06-08 02:43:07