如何从jar中排除包(使用maven)

时间:2016-02-16 12:28:43

标签: java maven jar build geronimo

我想从我的项目中排除geronimo-javamail_1.4_spec jar,我正在使用maven来构建项目,我看到this文章,我将exclusion部分添加到我的{{1}但在某种程度上,在我构建项目之后,我在war文件中看到了pom.xml geronimo-javamail_1.4_spec-1.7.1.jar

请告诉我如何从我的.war中排除这个罐子。

1 个答案:

答案 0 :(得分:1)

<dependency>
    <groupId>org.apache.geronimo.specs</groupId>
    <artifactId>geronimo-javamail_1.4_spec</artifactId>
    <version>1.4</version>
     <scope>provided</scope>
</dependency>


This way the maven will add them to the compilation classpath, but will not package them