本文介绍了Maven中的Maven更新依赖项的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否有任何预先存在的Maven插件或命令来更新POM中的依赖关系?
示例:(如果这在我的POM中)
Are there any preexisting Maven plugins or commands to update the dependencies in the POM?Example: (if this was in my POM)
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.3</version>
</dependency>
有一个命令或插件,我可以运行它来更新依赖关系:
Is there a command or plugin I can run to get it to update the dependency to:
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.4</version>
</dependency>
推荐答案
尝试,特别是 goal。
Try the maven-versions-plugin, in particular, the versions:use-latest-versions goal.
这篇关于Maven中的Maven更新依赖项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!