maven nexus 搭建私服(二)


nexus版本:nexus-3.37.3-02-win64,在2.x的nexus上面,不适用,不过原理一样,就配置不一样而已

1.配置setting.xml

2.上传jar包 (cmd命令)

3.上传jar包(pom文件,在idea使用mvn插件上传)

4.上传到自己创建的仓库

1.配置setting.xml

ps:名字取名:aa,后面上传命令用到


aa
admin
admin

2.上传jar包 (cmd命令)

 名字:aa,之前的命名

mvn deploy:deploy-file "-DgroupId=com.ligy" "-DartifactId=nexus2" "-Dversion=1.0-SNAPSHOT" "-Dpackaging=jar" "-Dfile=D:\IdeaProjects\nexus2\target\nexus2-1.0-SNAPSHOT.jar" "-Durl=http://localhost:8081/repository/maven-snapshots/" "-DrepositoryId=aa"

 

3.上传jar包(pom文件,在idea使用mvn插件上传)

这里把版本号,改为:2.0-SNAPSHOT

<?xml version="1.0" encoding="UTF-8"?>
"http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    4.0.0

    com.ligy
    nexus2
    2.0-SNAPSHOT

    
        
            aa
            aaaaaa
            http://localhost:8081/repository/maven-snapshots/
        
    

 

 4.上传到自己创建的仓库

先创建自己的仓库:demo1-ligy