覆盖postgresql的托管版本9.4.1212.jre7

时间:2018-01-30 14:17:11

标签: maven

在向maven添加PostgreSQL依赖项时,我遇到了警告:覆盖postgresql的托管版本9.4.1212.jre7。这是什么意思?

Maven依赖代码: -

<dependency>
  <groupId>org.postgresql</groupId>
  <artifactId>postgresql</artifactId>
  <version>9.4-1206-jdbc42</version>
</dependency> 

1 个答案:

答案 0 :(得分:1)

这意味着此依赖项的版本已在父pom中设置。通过在您的pom中设置版本,您不再使用该“托管”版本。您可以从依赖项中删除版本元素以使用托管版本,也可以像在此处一样继续使用版本覆盖。