NetbeansでコンパイルするMavenプロジェクトがあります。コンパイル後にバイナリコードがコピーされる別のビルドディレクトリを指定する方法はありますか?
承知しました。 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>
<project>
<build>
<outputDirectory>target/classes</outputDirectory>
</build>
</project>