使用maven复制jar文件

时间:2013-05-31 16:58:02

标签: maven ant pom.xml

我试图将由Maven 3创建的.jar复制到另一个位置。 目前,我正在使用Ant的复制任务,但Maven根本无法复制该文件。

<plugin>
  <artifactId>maven-antrun-plugin</artifactId>
  <executions>
    <execution>
      <phase>install</phase>
      <configuration>
        <tasks>
          <copy file="target/myfile.jar" tofile="D:/Bukkit/plugins/myfile.jar"/>
        </tasks>
      </configuration>
    </execution>
  </executions>
</plugin>

1 个答案:

答案 0 :(得分:5)

        <plugin>
            <artifactId>maven-antrun-plugin</artifactId>
            <configuration>
                <tasks>
                    <copy file="target/myfile.jar" tofile="D:/Bukkit/plugins/myfile.jar"/>
                </tasks>
            </configuration>
            <executions>
                <execution>
                    <phase>install</phase>
                    <goals>
                        <goal>run</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>