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

最佳答案

我发现的其他两个依赖项是:

 <dependencies>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-embedder</artifactId>
      <version>2.0</version>
      <exclusions>
        <exclusion>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-core</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
    ...
  </dependencies>

引用此:http://maven.apache.org/pom.html

10-08 15:32