我有这个POM.xml项目文件:
<project>
<groupId>com.mycompany</groupId>
<artifactId>someartifact</artifactId>
<version>2.0.5</version>
<dependencies>
<dependency>
<groupId>com.mycompany></groupId>
<artifactId>anotherartifact</artifactId>
<version>LATEST</version> <!-- Corresponds to 2.0.5 -->
</dependency>
</dependencies>
</project>
如您所见,anotherartifact
依赖关系版本设置为LATEST
,对应2.0.5
。另外,我当前的项目someartifact
也有2.0.5
版本。如何使someartifact
版本始终自动设置为与依赖项版本相同的版本?
答案 0 :(得分:0)
你会做相反的事情。将依赖项版本设置为使用${project.version}
。