Maven 更新 POM 中的依赖项
是否有任何预先存在的 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>
推荐答案
试试 maven-versions-plugin,特别是 版本:使用最新版本 目标.
Try the maven-versions-plugin, in particular, the versions:use-latest-versions goal.
相关文章