使用Maven下载的不同版本的工件

时间:2015-10-26 18:20:13

标签: java eclipse maven

Maven下载自动依赖层次结构的某些依赖,但我想在我的项目中使用不同的版本。在我的Java程序中导入正确版本的最佳方法是什么。

enter image description here

我需要使用镶木地板1.8.1。

2 个答案:

答案 0 :(得分:0)

您应该在pom.xml文件中搜索要更改的依赖项。然后,您可以指定预期版本<version></version>

答案 1 :(得分:0)

您是否尝试过排除?

<dependency>
....
<exclusion>
<artifactId>artifactId</artifactId>
<groupId>groupId</groupId>
</exclusion>
....
</dependency>