欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Maven FAQ

程序员文章站 2022-07-14 12:45:56
...
1, 将第三方jar包上传到Nexus仓库
mvn deploy:deploy-file -Durl=http://nexus.aws.xxx.com:8081/repository/maven-central -DrepositoryId=xxx-nexus -Dfile=./spock-core-1.1-groovy-2.4.jar -DpomFile=./spock-core-1.1-groovy-2.4.pom -Dsources=./spock-core-1.1-groovy-2.4-sources.jar


修改settingx.xml文件,添加用户名和密码
<servers>
    <server>
      <id>xxx-nexus</id>
      <username>username</username>
      <password>password</password>
    </server>
</servers>


相关标签: maven