我想更新我的 pom.xml 以便当有人使用:mvn clean package 时,将生成的 jar 文件复制到当前目录。我正在查看 maven 插件复制资源,但我不确定如何指定当前目录,是否有与操作系统无关的方法来执行此操作?如果可能的话,希望它也能在 Windows 上工作
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.3</version>
<executions>
<execution>
<id>copy-resources</id>
<!-- here the phase you need -->
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}</outputDirectory>
<resources>
<resource>
<directory>target/Test-0.0.1-SNAPSHOT.jar</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
谢谢