私は次の構成を持っています:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<id>analyze</id>
<goals>
<goal>analyze-only</goal>
</goals>
<configuration>
<failOnWarning>false</failOnWarning>
</configuration>
</execution>
<!--Copy the dependencies so ant build has the same versions-->
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.basedir}/lib</outputDirectory>
<overWriteIfNewer>true</overWriteIfNewer>
<stripVersion>true</stripVersion>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
<excludeTransitive>false</excludeTransitive>
</configuration>
</execution>
</executions>
</plugin>
上記の構成では、すべてが同じフォルダーにダンプされます。テスト構成を追加してテストスコープを除外しようとしましたが、エラーが発生します。
プロジェクトpcgenで目標org.apache.maven.plugins:maven-dependency-plugin:2.6:copy-dependencies(copy-dependencies)を実行できませんでした:テストスコープを除外できません。これによりすべてが除外されます。
テストの依存関係を他の依存関係から分離して、別のフォルダーにコピーできるようにする方法はありますか?