私のプロジェクトでは、動的 Web アプリケーションの耳を作成し、依存関係の種類を Web パーツの war と Java パーツの jar として定義したいと考えています。
<dependencies>
<dependency>
<groupId>test.vias</groupId>
<artifactId>test-web</artifactId>
<version>1.0.0-SNAPSHOT</version>
<type>war</type>
</dependency>
<dependency>
<groupId>test.vias</groupId>
<artifactId>test-service</artifactId>
<version>1.0.0-SNAPSHOT</version>
<type>jar</type>
</dependency>
ここでの問題は、依存プロジェクト モジュールの pom.xml で定義できる依存関係のタイプの数です。