如何从jar中明确排除某些内容

时间:2013-11-25 21:24:36

标签: java maven pom.xml

我有一个使用maven构建的Web应用程序。

在我的pom中,如果我需要的xyz.jar包含它,我如何在构建时明确排除abc.jar?

1 个答案:

答案 0 :(得分:1)

取自:

http://maven.apache.org/guides/introduction/introduction-to-optional-and-excludes-dependencies.html

<dependency>
  <groupId>sample.ProjectA</groupId>
  <artifactId>Project-A</artifactId>
  <version>1.0</version>
  <scope>compile</scope>
  <exclusions>
    <exclusion>  <!-- declare the exclusion here -->
      <groupId>sample.ProjectB</groupId>
      <artifactId>Project-B</artifactId>
    </exclusion>
  </exclusions> 
</dependency>