上传jar包到maven库

maven配置文件和pom文件均需要修改,具体如下:

pom文件配置:



    ${project.artifactId}-${project.version}
    
      
        org.apache.maven.plugins
        maven-compiler-plugin
        3.5.1
        
          1.8
          1.8
          UTF-8
        
      
    

    
      
        src/main/java
        
          **/*.java
        
      
    
  

  
  
    
      nexus
      Releases
      http://10.9.2.79:8081/repository/xxxx-release/
    
    
      nexus
      Snapshot
      http://10.9.2.79:8081/repository/xxxx-snapshot/
    
  

maven配置文件:

  
  
  E:/code/maven-rep/xiaodianrep

    
    org.sonatype.plugins  
    
  
  
  

  
	 
        nexus 
        私有库登陆账号 
        私有库登陆密码 
    
  

  
   
      nexus
      *
      http://10.9.2.79:8081/repository/xxxx-group/(私有库分组地址)
    
  
  
    
      
		nexus  
          
              
                central  
                    http://central  
                    true  
                    true  
              
          
		  
			  
				central  
				http://central  
				true  
				true  
			  
          
    
  
	
    
      nexus  
   

以上配置完成后执行如下命令:

mvn clean deploy

或在idea中点击(注意是在Lifecycle而非Plugins下):

上传jar包到maven库_第1张图片

你可能感兴趣的:(maven,java)