デフォルトでは、mavenコンパイラプラグインはコンパイルされたクラスをに配置し${project.build.directory}/classes
ます。それらを入れたい${project.build.directory}/myclasses
。引数-d
は、コンパイルされたクラスの宛先を変更します。プラグインを設定しましたが、エラーが発生しました:javac: directory not found: C:\home\target/myclasses
。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<showDeprecation>true</showDeprecation>
<compilerArguments>
<d>${project.build.directory}/myclasses</d>
</compilerArguments>
</configuration>
</plugin>