Maven之antrun插件测试

此代码来自官方examples:

 

<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>

 运行mvn compile

你可能感兴趣的:(maven)