私のプロジェクトは JAVA 1.3 を使用してビルドする必要があるため、次のコンパイル プラグインを使用します。
<plugin>
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
<configuration>
<source>1.3</source>
<target>1.3</target>
</configuration>
</plugin>
. ただし、ビルド中に JUNIT4 テストを実行する必要があるため、Java 1.6 を使用するには sunfire プラグインが必要です。これはmaven 3で可能ですか?