将项目打包至私有maven仓库

1.下载并安装maven

2.打开conf目录的settings.xml文件,找到servers节点并添加私有仓库的id、用户名、密码



   
       releases
       用户名
       密码
   

   
       snapshots
       用户名
       密码
   

3.找到profiles节点配置私有仓库地址
 


      kn-dev
      
        
            public
            Public Repositories
            http://仓库地址加端口/nexus/content/groups/public/
            
                true
            
            
                true
            
        
    
    
    
        
           public
           Public Repositories
           http://仓库地址加端口/nexus/content/groups/public/
           
                true
            
            
                true
            
        
    
    

4.在profiles节点后激活该配置


    kn-dev

 

5.在maven项目里面的pom.xml配置要发布的仓库地址


    
    
        snapshots
        http://仓库地址加端口/nexus/content/repositories/snapshots
    
    
    
        releases
        http://仓库地址加端口/nexus/content/repositories/releases
    

6.执行deploy命令即可将项目打包至远程仓库

mvn deploy:deploy-file -Dmaven.test.skip=true -Dfile=D:\project\helloworld.jar -DgroupId=com.itcaset.test -DartifactId=maven-test -Dversion=1.0.0-SNAPSHOT -Dpackaging=jar -DrepositoryId=public -Durl=http://192.168.0.112/repository/roy_privrepository_snapshots/

-Dmaven.test.skip=true //跳过编译、测试

-Dfile=D:\project\helloworld.jar //jar包文件地址,绝对路径

-DgroupId=com.itcaset.test //gruopId--pom坐标,自定义

-DartifactId=maven-test //artifactId--pom坐标,自定义

-Dversion //版本号

-Dpackaging //打包方式

-DrepositoryId //远程库服务器ID

-Durl //远程库服务器地址

idea可以在maven插件运行deploy

项目的version如果是以SNAPSHOT结尾,则项目会发布到快照仓库,否则发布到正式版本仓库

你可能感兴趣的:(java)