テストソースディレクトリに統合テスト用の共通コードを含むmavenモジュールがあります。これらのクラスを含むテスト jar を作成します。
Mavenでは、次を使用します( http://maven.apache.org/guides/mini/guide-attached-tests.htmlで述べたように):
<dependency>
<groupId>com.myco.app</groupId>
<artifactId>foo</artifactId>
<version>1.0-SNAPSHOT</version>
<type>test-jar</type> <!-- this is the important part-->
<scope>test</scope>
</dependency>
これを別のモジュールで使用するため。
Play (または SBT) で test-jar へのそのような依存関係を定義するにはどうすればよいですか?