在我的项目中,我想为动态 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 中为依赖项目模块定义多少种依赖。