nexus加入新jar包

nexus加入新jar

到对应的jar包所在目录 先加入项目jar,这里是发布snapshots版本的,其他的自己替换即可

mvn deploy:deploy-file -DgroupId=com.xxx.springboot -DartifactId=xx-support -Dversion=1.1.0-SNAPSHOT -Dpackaging=jar -Dfile=xx-support-1.1.0-SNAPSHOT.jar-Durl=http://xxx.dev3.com/nexus/content/repositories/snapshots/ -DrepositoryId=snapshots

再加入sources.jar

mvn deploy:deploy-file -DgroupId=com.xxx.springboot -DartifactId=ruoyi-support -Dversion=1.1.0-SNAPSHOT -Dpackaging=jar -Dfile=xx-support-sources.jar -Durl=http://xxx.dev3.com/nexus/content/repositories/snapshots/ -DrepositoryId=snapshots

你可能感兴趣的:(nexus,mvn)