我有一个使用maven构建的Web应用程序。
在我的pom中,如果我需要的xyz.jar包含它,我如何在构建时明确排除abc.jar?
答案 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>