同事想和你用一个jar包,你用的是1.0版本,他用的是2.0版本,冲突怎么解决
新建一个maven项目,pom依赖里加入冲突的依赖,比如我这边原项目使用了jdom 1.1的版本,然后我又想使用jdom 2.0.2的版本
<dependencies>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom</artifactId>
<version>2.0.2</version>
</dependency>
</dependencies>
build标签使用如下代码,只需要改项目名和依赖更名后的名称
<build>
<!-- 项目名称-->
<finalName>maven-shade</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<excludes>
<exclude>classworlds:classworlds</exclude>
<exclude>junit:junit</exclude>
<exclude>jmock:*</exclude>
<exclude>*:xml-apis</exclude>
<exclude>org.apache.maven:lib:tests</exclude>
<exclude>log4j:log4j:jar:</exclude>
</excludes>
</artifactSet>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
<createDependencyReducedPom>true</createDependencyReducedPom>
<relocations>
<relocation>
<!-- 改名前 -->
<pattern>org.jdom</pattern>
<!-- 改名后 -->
<shadedPattern>shade.org.jdom</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
然后打包放入需要使用的项目中,比如我这边放入了需要使用项目的resource/lib下
在此项目中的pom中加入,此处的版本id 名称什么的可以随意scope和systemPath注意就行
<dependency>
<groupId>maven.share</groupId>
<artifactId>share</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/resources/lib/maven-shade.jar</systemPath>
</dependency>
然后就可以愉快地使用了
本文参考:最佳解决Maven同一依赖多版本共存问题,重复依赖(同一个jar包,多个版本)-maven-shade-plugin_maven 多个版本共存-CSDN博客