mvn上传pom/jar至Nexus私服
2021-03-10 02:29
标签:lan 安装 aging 文件 src ann pac xxx 其它 参考博客:jar包上传maven私服出错Cannot deploy artifact from the local repository mvn上传pom/jar至Nexus私服 标签:lan 安装 aging 文件 src ann pac xxx 其它 原文地址:https://www.cnblogs.com/maggieq8324/p/14159051.html
jar
文件mvn deploy:deploy-file -Dfile={file} -DrepositoryId={repositoryId} -Durl={url} -DpomFile={pom} -Dpackaging=jar
eg:
mvn deploy:deploy-file -Dfile=xxx.jar -DrepositoryId=tbsnexus -Durl=http://xxx/nexus/content/repositories/repository -DpomFile=xxx.pom -Dpackaging=jar
pom
文件mvn deploy:deploy-file -Dfile={file} -DrepositoryId={repositoryId} -Durl={url} -DpomFile={pom} -Dpackaging=pom
eg:
mvn deploy:deploy-file -Dfile=xxx.pom -DrepositoryId=tbsnexus -Durl=http://xxx/nexus/content/repositories/repository -DpomFile=xxx.pom -Dpackaging=pom
报错记录
Cannot deploy artifact from the local repository
maven
的deploy:deploy-file
命令安装的jar
和pom
位于本地repository
的目录下时命令会出错 (Cannot deploy artifact from the local repository…
),解决方法是将要安装的jar
和pom
文件copy
到其它目录再安装,只要不在本地仓库目录都可以
.end
文章标题:mvn上传pom/jar至Nexus私服
文章链接:http://soscw.com/index.php/essay/62562.html