当运行版本:use-latest-versions时,它似乎忽略了我在命令行上指定的includesList并尝试更新所有的depdencies。
mvn versions:use-latest-versions -DincludesList=com.mycompay.common:\* -DexcludeReactor=false -DallowSnapshots=true -DallowMinorUpdates=true
我在文档中找到的所有内容都让我相信指定包含意味着排除所有其他内容。我没有正确地选择这个吗?
答案 0 :(得分:7)
参数为includes
而不是includesList
,请尝试以下操作:(根据文档here)
mvn versions:use-latest-versions -Dincludes=com.mycompay.common:* -DexcludeReactor=false -DallowSnapshots=true -DallowMinorUpdates=true