これは私のプロジェクトです POM(貼り付けへのリンクなので、右クリックして> 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>
FAQ で宣伝されているように、デフォルトのjarプラグインを構成するというアドバイスに従いましたが、それでもmvn package
を実行すると、約20Kの警告が発行されます。 mvn clean
を実行しても役に立ちません。
この回答 によると、いくつかの依存関係を手動で除外できます。ただし、それが正しい方法かどうかはわかりません。また、依存関係ツリーはかなり複雑であるため、どこから始めればよいかを議論するのは困難です。
私はこれらの問題が有害ではないことを知っていますが、私は警告を修正しなければならないものとして扱うことに慣れています。さらに、私はMavenの初心者なので、理解のどこが悪いのか、問題のトラブルシューティング方法を理解したいと思います。
(mavenアセンブリプラグインの使用はここではオプションではありません)
同じクラス定義が2つ以上のJARファイルで見つかる場合があります(通常、これらは依存関係のJARです)。このような場合、依存関係または最終的なアーティファクトから手動で除外するものを見つけようとする以外に、開発者ができることは何もありません(おそらくmvn dependency:tree -Ddetail=true
の助けを借りて)。 I 問題を開いてパッチを送信しました 、開発者が次のような少しきれいな出力を行えるようにします
[WARNING] xml-apis-1.3.02.jar, xmlbeans-2.3.0.jar define 4 overlappping classes:
[WARNING] - org.w3c.dom.TypeInfo
[WARNING] - org.w3c.dom.DOMConfiguration
[WARNING] - org.w3c.dom.DOMStringList
[WARNING] - org.w3c.dom.UserDataHandler
[WARNING] maven-shade-plugin has detected that some .class files
[WARNING] are present in two or more JARs. When this happens, only
[WARNING] one single version of the class is copied in the uberjar.
[WARNING] Usually this is not harmful and you can skip these
[WARNING] warnings, otherwise try to manually exclude artifacts
[WARNING] based on mvn dependency:tree -Ddetail=true and the above
[WARNING] output
[WARNING] See http://docs.codehaus.org/display/MAVENUSER/Shade+Plugin
この出力とmvn dependency:tree
からの出力を使用して、次のようなセクションを追加しました
<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>4.7.0</version>
<exclusions>
<exclusion>
<groupId>org.Apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
</exclusion>
<exclusion>
<groupId>bouncycastle</groupId>
<artifactId>bcmail-jdk14</artifactId>
</exclusion>
<exclusion>
<groupId>bouncycastle</groupId>
<artifactId>bcprov-jdk14</artifactId>
</exclusion>
<exclusion>
<groupId>org.bouncycastle</groupId>
<artifactId>bctsp-jdk14</artifactId>
</exclusion>
</exclusions>
</dependency>
警告の数を数千から数十に減らすことができました。それでも、これは完璧ではありません。それでも、名前の衝突につながるクラスをコピーアンドペーストし続けます(理由はわかりません)。それでも、このソリューションはこの特定のプロジェクトに固有のものであり、他のものに簡単に移植することはできません。
この問題の新しい更新として、現在のMavenプラグインへの更新があります。質問は使用しています
<version>1.7.1</version>
それはあなたにそれを伝えるだけです:
We have a duplicate org/Eclipse/persistence/internal/libraries/asm/AnnotationVisitor.class in /Users/.../repository/org/Eclipse/persistence/eclipselink/2.7.0/eclipselink-2.7.0.jar
クラスが重複している最初のエントリを推測したり、試行錯誤したりする必要があります。あまり役に立ちません。幸いなことに、
<version>3.1.0</version>
それらが由来するjarファイルを含むより有用な出力を提供します:例:.
annotations-3.0.1.jar, jcip-annotations-1.0.jar define 4 overlapping classes:
- net.jcip.annotations.GuardedBy
- net.jcip.annotations.NotThreadSafe
...
次に、どちらか一方を除外するか、シェードを使用してプロジェクトに応じてクラスの名前を変更するかを決定できます。