Maven 中央仓库提交Jar包全程指南
本文记录一下将jar上传到maven中央仓库的全过程,文中项目依托在github上,使用的是mac环境 (关于maven、jdk的环境配置不属于本文内容)
首先我们需要申请一个账号,地址为: https://issues.sonatype.org/secure/Signup!default.jspa
请记住这个账号的用户名 + 密码,在后续的maven的setting.xml
配置文件中需要用到
账号申请完毕之后,点击新建
按钮(如果是因为的话,就是create
),提交一个issue
Community Support - Open Source Project Repository Hosting (OSSRH)
New Project
com.github
,后面跟着的是你的账号名,比如我的账号是liuyueyi
,所以我的groupId是 com.github.liuyueyi
,如果不满足这个规则将无法通过后续的审核Project URL
: 项目地址,填对应的github连接 https://github.com/liuyueyi/quick-chinese-transferSCM URL
: 和上面的基本一致,只是多了一个.git
基本上需要配置的东西如下图,最后点击新建即可
上面提交之后,等待审核即可
在后续的上传jar包时,需要利用gpg进行签名,下面介绍一下mac的安装流程
推荐用法
macos安装可以借助homebrew来实现
brew install gpg
备选方案
但是我的mac系统比较老,使用上面的方式安装失败,直接抛了异常,根据搜索结果来看,不升级系统貌似没有什么好的解决办法
下面是采用安装包的方式,原则上建议到官网去下载安装包,依然是因为版本问题,最新的我也安装不上,所以找了一个历史的下载网址,(不保证这个网站上的安装包的安全性。虽然我自己用的也是它)
如有需要,可以跳转: https://sourceforge.net/p/gpgosx/docu/Download/
我选择的是2.2.12
版本,安装完毕之后,可以查看一下里面的readme
文件,查看具体的安装路径
比如在我的电脑上安装路径为: /usr/local/gnupg-2.2/bin
,为了方便使用,可以设置一下环境
vim ~/.bash_profile
# 添加新的path路径
PATH=$PATH:/usr/local/gnupg-2.2/bin
source ~/.bash_profile
密钥生成及发布
安装完毕之后,设置我们自己的密钥
# 生成密钥对
# 输入用户名 + 邮箱,请记住这个密码,后面上传jar包的时候会用到
gpg --gen-key
查看本地密钥
# 生成完毕之后,查看本地密钥
gpg --list-keys
上图中勾住的就是我们的公钥id,接下来将公钥id上传到密钥服务器
## 上传公钥
gpg --keyserver hkp://keyserver.ubuntu.com:11371 --send-keys 公钥ID
## 查看公钥上传情况
gpg --keyserver hkp://keyserver.ubuntu.com:11371 --recv-keys 公钥ID
接下来,我们需要设置一下我们的maven配置文件setting.xml
,将我们的用户信息填写进去
vim ~/.m2/setting.xml
添加第一步中申请的账号信息,(用户名+密码就是第一步申请的账号密码)
# 添加账号信息
<servers>
<server>
<id>ossrhid>
<username>userusername>
<password>passwordpassword>
server>
servers>
前面的步骤属于大的环境相关,接下来就需要在我们的实际项目中,配置必要的信息了,这里以https://github.com/liuyueyi/quick-chinese-transfer的配置为实例进行说明
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0modelVersion>
<groupId>com.github.liuyueyigroupId>
<artifactId>quick-chinese-transferartifactId>
<packaging>pompackaging>
<version>0.1version>
<modules>
<module>transfer-coremodule>
modules>
<name>quick-chinese-transfername>
<description>
A Java library supporting conversion between Simplified-Chinese, Traditional-Chinese
description>
<url>https://github.com/liuyueyi/quick-chinese-transferurl>
<licenses>
<license>
<name>The Apache Software License, Version 2.0name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txturl>
<distribution>repodistribution>
license>
licenses>
<issueManagement>
<system>githubsystem>
<url>https://github.com/liuyueyi/quick-chinese-transfer/issuesurl>
issueManagement>
<scm>
<connection>scm:git:https://github.com/liuyueyi/quick-chinese-transfer.gitconnection>
<developerConnection>scm:git:https://github.com/liuyueyi/quick-chinese-transfer.gitdeveloperConnection>
<url>https://github.com/liuyueyi/quick-chinese-transferurl>
scm>
<developers>
<developer>
<name>YiHuiname>
<email>[email protected]email>
<url>http://blog.hhui.topurl>
developer>
developers>
<properties>
<project.build.sourceEncoding>UTF-8project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8project.reporting.outputEncoding>
<java.version>1.8java.version>
properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.pluginsgroupId>
<artifactId>maven-compiler-pluginartifactId>
<configuration>
<source>1.8source>
<target>1.8target>
configuration>
plugin>
<plugin>
<groupId>org.apache.maven.pluginsgroupId>
<artifactId>maven-release-pluginartifactId>
<configuration>
<mavenExecutorId>forked-pathmavenExecutorId>
<useReleaseProfile>falseuseReleaseProfile>
<arguments>-Psonatype-oss-releasearguments>
configuration>
plugin>
<plugin>
<groupId>org.apache.maven.pluginsgroupId>
<artifactId>maven-source-pluginartifactId>
<version>3.1.0version>
<inherited>trueinherited>
<executions>
<execution>
<id>attach-sourcesid>
<goals>
<goal>jargoal>
goals>
execution>
executions>
<configuration>
<excludeResources>trueexcludeResources>
<useDefaultExcludes>trueuseDefaultExcludes>
configuration>
plugin>
<plugin>
<groupId>org.apache.maven.pluginsgroupId>
<artifactId>maven-javadoc-pluginartifactId>
<version>3.0.0version>
<inherited>trueinherited>
<executions>
<execution>
<id>bundle-sourcesid>
<phase>packagephase>
<goals>
<goal>jargoal>
goals>
execution>
executions>
<configuration>
<maxmemory>1024maxmemory>
<encoding>UTF-8encoding>
<show>protectedshow>
<notree>truenotree>
<failOnError>falsefailOnError>
<doclint>nonedoclint>
configuration>
plugin>
plugins>
pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojogroupId>
<artifactId>cobertura-maven-pluginartifactId>
<version>2.7version>
<configuration>
<formats>
<format>htmlformat>
<format>xmlformat>
formats>
<check/>
configuration>
plugin>
<plugin>
<groupId>org.apache.maven.pluginsgroupId>
<artifactId>maven-resources-pluginartifactId>
<version>3.1.0version>
<configuration>
<encoding>UTF-8encoding>
configuration>
plugin>
<plugin>
<groupId>org.apache.maven.pluginsgroupId>
<artifactId>maven-compiler-pluginartifactId>
plugin>
<plugin>
<groupId>org.apache.maven.pluginsgroupId>
<artifactId>maven-javadoc-pluginartifactId>
plugin>
<plugin>
<groupId>org.apache.maven.pluginsgroupId>
<artifactId>maven-source-pluginartifactId>
plugin>
plugins>
build>
<distributionManagement>
<repository>
<id>ossrhid>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/url>
repository>
<snapshotRepository>
<id>ossrhid>
<url>https://oss.sonatype.org/content/repositories/snapshotsurl>
snapshotRepository>
distributionManagement>
<profiles>
<profile>
<id>releaseid>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.pluginsgroupId>
<artifactId>maven-gpg-pluginartifactId>
<version>1.6version>
<executions>
<execution>
<id>sign-artifactsid>
<phase>verifyphase>
<goals>
<goal>signgoal>
goals>
execution>
executions>
plugin>
plugins>
build>
profile>
profiles>
project>
上面是一个完整的配置信息,其中,非常核心的几个点
groupId
: 请注意与申请的保持一致plugins
: 我们上传的jar包,需要包含doc和源码,所以maven-source-plugin
+ maven-javadoc-plugin
必不可少maven-gpg-plugin
: 签名的插件,必要在我的实际项目开发过程中,这里遇到了一个问题,maven-gpg-plugin
下载不下来一直标红,如果遇到这种问题,可以定向下载
mvn dependency:get -DrepoUrl=http://repo.maven.apache.org/maven2/ -Dartifact=org.apache.maven.plugins:maven-gpg-plugin:1.6
除此之外,还可以通过idea设置 -> maven -> Repositories
更新依赖
上面这个配置完毕之后,就是打包上传,直接使用以下命令即可
mvn clean deploy -DskipTests=true -P release
这个命令执行过程中,会弹出一个输入gpg密码的弹窗,输入我们第二步中生成gpg密钥时,填写的密码即可
jar包上传完毕之后,就可以在https://oss.sonatype.org/看到了
注意
当我们第一步提交的issues审核之后,会有一个邮件通知你,可以发布对应的jar包了,也可以在issues看到下面的回复,一般有下面两步
接下来登录 https://oss.sonatype.org/#stagingRepositories 管理我们上传的jar包
Staging Repositories
close点击完毕之后,如果一切正常,那么等待一段时间之后,就可以发现release按钮可以点击了,然后点击release发布即可
如果一切顺利,我们会收到一个邮件,告诉我们发布成功,准备同步jar包了
然后等十来分钟,就可以直接依赖导入jar包了
<dependency>
<groupId>com.github.liuyueyigroupId>
<artifactId>quick-transfer-coreartifactId>
<version>0.1version>
dependency>
注意
关于上面这个发布,有可能没有那么顺利,比如我之前遇到了几个问题,点击选中包的Activites
可以查看失败的原因
上面几个问题的原因主要在于项目的pom配置有问题,导致上传的包没有签名,没有source
, java-doc
其次还遇到过一次说是gpg密钥没有找到的问题,这个有可能是因为我们上传的密钥还没有同步过去,有延迟,再试一次就可以了
虽然网上挺多这种教程,但是在实际的操作中,总会遇到一些别人没有遇到的问题,当然如果没有遇到问题,那当然是最幸运的事情了;本文主要是为了记录jar包上传的中央仓库的全过程,做一个归纳小结,也方便后续的查阅,当然如果对其他的小伙伴能有所帮助也是不错的
在写本文的时候,已经可以在中央仓库搜索到上传的jar包了
参考文档
一灰灰的个人博客,记录所有学习和工作中的博文,欢迎大家前去逛逛
尽信书则不如,以上内容,纯属一家之言,因个人能力有限,难免有疏漏和错误之处,如发现bug或者有更好的建议,欢迎批评指正,不吝感激