6

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

4

1 回答 1

1

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

 <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

于 2013-11-01T06:38:33.440 回答