別のモジュールのテストでテストを添付するプラグインを使用しています。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
そして、jarが必要なモジュールで:
<dependency>
<groupId>com.myco.app</groupId>
<artifactId>foo</artifactId>
<version>1.0-SNAPSHOT</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependencies>
それは私にとって非常に役に立ちましたが、問題が見つかりました: "clean install -Dmaven.test.skip=true"を実行すると、依存関係の test-jar も必要になり、プロセスが失敗します