我有我的 pom.xml
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
<exclusions>
<exclusion>
<artifactId>dom4j</artifactId>
<groupId>dom4j</groupId>
</exclusion>
</exclusions>
</dependency>
我已经从类路径中删除了 dom4j 1.6.1 jar,当我再次构建时,maven 尝试下载并将其添加到类路径中。如何正确避免将该 jar 添加到类路径并仅通过 MANIFEST.MF 文件添加?