在我pom.xml
的中com.test:Service:1.0
,我依赖于一些本地 jar:com.test:Parser:1.0
我想解决除它之外的所有依赖项,因为我手动将其安装到本地 Maven。解决命令:
mvn -B dependency:resolve -DincludeParents=true
但它失败了:
[错误] 无法在项目服务上执行目标:无法解析项目 com.test:Service:jar:1.0 的依赖项:无法在中心找到工件 com.test:Parser:jar:1.0 ( https://repo.maven .apache.org/maven2)
然后我尝试添加选项
-DexcludeGroupIds=com.test -DexcludeArtifactIds=Parser
但我仍然遇到同样的错误。我是否滥用了这些选项?
参考:http://maven.apache.org/plugins/maven-dependency-plugin/resolve-mojo.html
LEATH
慕尼黑8549860
相关分类