9

デフォルトでは、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>
4

2 に答える 2

7

あなたはこのようにそれを行うことができるはずです:

<build>
    <outputDirectory>${project.build.directory}/myclasses</outputDirectory>
</build>
于 2012-06-21T15:59:04.703 に答える
6

宛先フォルダーが存在する必要があります。Ant タスクを使用して作成できます。

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-antrun-plugin</artifactId>
    <executions>
        <execution>
            <id>createClassesDir</id>
            <phase>process-resources</phase>
            <configuration>
                <tasks>
                    <mkdir dir="${project.build.directory}/myclasses" />
                </tasks>
            </configuration>
            <goals>
                <goal>run</goal>
            </goals>
        </execution>
    </executions>
</plugin>
于 2012-06-21T16:01:49.883 に答える