这是我的项目POM (link to the paste, so you can right click > save as pom.xml)
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.zybnet</groupId>
<artifactId>excel-reporter</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>mvn1</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.8</version>
</dependency>
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>4.6.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.0.0</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>${project.build.sourceDirectory}</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<finalName>${artifactId}-${version}-tmp</finalName>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.7.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>com.zybnet.Main</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
我按照the FAQ中的建议配置了默认的jar插件,但是当我运行mvn package
时,仍然发出了大约20K个警告,运行mvn clean
也没有帮助。
根据this answer,我可以手动排除一些依赖项,但是,我不知道这样做是否正确,而且依赖树相当复杂,所以很难讨论从哪里开始。
我知道这些问题并没有什么危害,但我习惯于把警告当作必须修复的东西。而且,我是Maven的初学者,所以我想知道我的理解有什么问题,以及如何解决问题。
- (此处不提供使用maven汇编插件的选项)*
3条答案
按热度按时间kmpatx3s1#
有时候,同一个类定义会出现在两个或更多的JAR文件中(通常这些都是依赖JAR),在这种情况下,开发人员除了尝试找出从依赖项或最终工件中手动排除哪些内容(可能需要
mvn dependency:tree -Ddetail=true
的帮助)之外,什么也做不了。使用这个输出和
mvn dependency:tree
的输出,我添加了如下部分并且设法将警告的数量从几千个减少到几十个。但是,这并不完美。但是,他们继续复制粘贴类,导致名称冲突(我不明白为什么)。但是,这个解决方案是特定于这个特定的项目,不能很容易地移植到其他任何东西上。
wz1wpwve2#
作为此问题的最新更新,正在更新到当前的maven插件。问题是使用
它只会告诉你:
让你去猜测或试错第一个条目在哪里有重叠的类。不是很有用。幸运的是,
将为您提供更有用的输出,其中包括这些jar的来源:例如:
然后,您可以决定排除其中的一个类,或者使用shade根据项目的需要重命名这些类。
h9a6wy2h3#
我已经更新到了3.4.1版本,现在它可以工作了。