我有一个用 Netbeans 编译的 Maven 项目。我有办法指定一个不同的构建目录,编译后在其中复制编译的二进制代码吗?
问问题
54015 次
2 回答
21
当然。使用以下内容更新您的 POM:
<build>
<directory>my_new_build_path</directory>
</build>
第 2 部分:指定 WAR 的输出路径:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.0</version>
<configuration>
<warName>test-web-app</warName>
<outputDirectory>my_output_path</outputDirectory>
</configuration>
</plugin>
于 2012-07-20T21:54:13.407 回答
17
<project>
<build>
<outputDirectory>target/classes</outputDirectory>
</build>
</project>
于 2012-07-20T21:53:58.787 回答