将自己的开源项目发布到Maven中央仓库中

参考:https://www.jdon.com/idea/publish-to-center-maven.html
https://blog.csdn.net/z69183787/article/details/81981359

maven配置文件



  
  
  
  
      
  

  
    
      ossrh
      username
      passwordA
    
  

  
  

  
     
        ossrh
        
            true
        
        
            gpg
            passwordA 
            C:\Program Files (x86)\GnuPG\bin\gpg.exe
            D:\Users\xxx\AppData\Roaming\gnupg
        
    
  


① https://issues.sonatype.org 工单管理地址,就是申请上传资格和groupId 的地方。

② https://oss.sonatype.org/#welcome 构件仓库,把jar包上传到这里,Release 之后就会同步到maven中央仓库。

③ http://search.maven.org/ 最终表现在可以在这里搜索到。

你可能感兴趣的:(将自己的开源项目发布到Maven中央仓库中)