maven上传jar到私服

修改maven setting文件配置
profile>
  nexus
 
    1.8
 

    
     
        nexus 
        local private nexus 
        http://10.0.22.18/repository/maven-public/
        truealways
        warn
 
        true 
    
       
 
 
   
     
        nexus 
        local private nexus 
        http://10.0.22.18/repository/maven-public/
        truealways
        warn
 
        true 
    
       
   
 



  nexus
  dev5
  mslife1234

mvn deploy:deploy-file -DgroupId=com.ms.esspdf -DartifactId=esspdf-clint -Dversion=1.5.0 -Dpackaging=jar -Dfile=C:/workspace/esspdf-client-1.5.0-SNAPSHOT.jar -Durl=http://10.0.22.18/repository/3rdparty/ -DrepositoryId=nexus

DgroupId和DartifactId构成了该jar包在pom.xml的坐标,项目就是依靠这两个属性定位。自己起名字也行。 
Dfile表示需要上传的jar包的绝对路径。 
Durl私服上仓库的位置,打开nexus——>repositories菜单,可以看到该路径。 
DrepositoryId服务器的表示id,在nexus的configuration可以看到。 
Dversion表示版本信息

你可能感兴趣的:(maven)