4

maven-shade-plugin を使用してプロジェクトをビルドしますが、処理できない問題が発生しました。ほぼ同じクラスの 2 つの jar があり、パスが同じ aspectjweaver.jar とspectjrt.jar の場合、 jarをパッケージ化すると、「重複したクラスが....に存在します」という警告が表示されます。「再配置」プロパティを使用してクラスを再配置しようとしましたが、問題は、2 つの jar でクラスを認識するにはどうすればよいですか? 次は私の Pom.xml の一部です。org.apache.maven.plugins maven-shade-plugin 1.3.1

            <executions>
                <execution>
                    <phase>package</phase>
                    <goals>
                        <goal>shade</goal>
                    </goals>
                    <configuration>

                        <filters>
                            <filter>
                                <artifact>org.aspectj:aspectjrt</artifact>
                                <includes>
                                    <include>*</include>
                                </includes>
                            </filter>
                        </filters>
                        <relocations>
                            <relocation>
                                <pattern>org.aspectj</pattern>
                                <shadedPattern>hide.org.aspectj</shadedPattern>
                            </relocation>
                        </relocations>
                        <transformers>
                            <transformer
                                implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
                                <mainClass>cm.data.DatBoostrap</mainClass>
                            </transformer>
                            <transformer
                                implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
                                <resource>META-INF/spring.handlers</resource>
                            </transformer>
                            <transformer
                                implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
                                <resource>META-INF/spring.schemas</resource>
                            </transformer>
                        </transformers>
                    </configuration>
                </execution>
            </executions>
        </plugin>
4

1 に答える 1