maven(私库)上传jar包

在实际开发过程中,我们经常会遇到需要引用的jar依赖,在我们公司的maven仓库不存在,这个时候我们就需要把jar上传上去,在项目中添加对应依赖就OK了。

步骤1:下载jar

  在http://mvnrepository.com/中找到所需jar包,或者在其它地方下载对应jar包。

步骤2:添加仓库

  打开maven仓库视图界面,登录(一般是用管理员用户),点击左边的Repositories,找到Third Party,检查如图所示配置。

maven(私库)上传jar包_第1张图片

步骤三:上传jar

点击Artifact Upload,GAV Definition选择GAV Parameters,然后填上必要信息,参照下面2图。

前:

maven(私库)上传jar包_第2张图片

后:

maven(私库)上传jar包_第3张图片

maven(私库)上传jar包_第4张图片

maven(私库)上传jar包_第5张图片

maven(私库)上传jar包_第6张图片

这样jar就上传到Third Party了。

但是,这样还不够,需要再检查一个东西

maven(私库)上传jar包_第7张图片

,这样就行了,还不够,要去maven的conf里设置下settings文件里面的server,附上我的settings.xml配置文件

复制代码






  

  

  

  
  
    
    com.alibaba.org.apache.maven.plugins
    com.alibaba.maven.plugins
    org.mortbay.jetty
    org.codehaus.cargo
    org.apache.maven.plugins
    org.codehaus.mojo
  

  
  
    
  

  
  
    

    
    
        nexus-releases
        admin
        mtait
    
    
    
        nexus-snapshots
        admin
        mtait
    
    
    
        nexus
        admin
        mtait
    
    
    
        tomcat.server
        mtait
        mtait
    
  

  
  
    
    
        nexus
        Nexus Public Mirror
        
        http://10.74.11.37:8081/nexus/content/groups/public
        *
    
  

  
  
    

    
    
        nexus
        
            
                central
                http://central
                
                    true
                
                
                    true
                
            
        
        
            
                central
                http://central
                
                    true
                
                
                    true
                
            
        
    
    
        sonatype
        
            
                sonatype
                oss.sonatype.org
                https://oss.sonatype.org/content/repositories/snapshots/
                
                    true
                
                
                    true
                
            
        
    
  

  
  
      nexus
      sonatype
  
复制代码

到此,上传至maven仓库的第三方jar就在你的中央仓库中了,项目就可以直接添加依赖引入了。


      com.jacob
      jacob
      1.18
 

注意:groupId,artifactId,version是你刚才添加的内容。

转载于:https://www.cnblogs.com/airen123/p/10557182.html

你可能感兴趣的:(maven(私库)上传jar包)