テスト目的でのみ必要なjunitのようないくつかのjarを使用しています。Maven 依存関係プラグインを使用して、maven を使用して作成された最終的な zip ファイルにすべての jar をコピーしています。junit jar がコピーされないようにする方法はありますか?
質問する
56 次
1 に答える
0
構成に includeScope = runtime を入れます
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<!-- exclude junit, we need runtime dependency only -->
<includeScope>runtime</includeScope>
<outputDirectory>${project.build.directory}/dependency-jar/</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
于 2014-12-16T14:04:15.883 に答える