目前有很多类似教程,但都已经过时了,现在Maven中央仓库的上传规则有新的变化,老的方式已经不适用了。自己的开源jar在上线Maven中央仓库的过程中,卡壳多次,经过不懈努力,总算是成功上架了。特意记录一下过程(2022-06-30)。
1. 创建工单
创建工单的前提是先得有自己的账号,地址:https://issues.sonatype.org/
密码规则要求比较高。务必要记住此密码,后面操作要多次用到账号和密码。
申请操作如下:
2. 确认group id
提交后,接下来就耐心等待工作人员审核,有时候很快几分钟就会回复,有时候很慢,存在时差,刷新评论里看到要你确认的东西,注册账号时填写的邮箱也会收到通知。
如下图这样,按要求完成其一即可,然后在评论里回复他说你做好了即可,然后等待通知。
3. gpg 安装
gpg的作用是生成密钥对,会用于后续我们组件发布的校验。
下载地址: https://www.gnupg.org/download/,在安装完成后,需要创建密钥对,UI和命令的模式二者选一即可。
UI模式:
运行kleopatra程序,新建密钥对,自己填的密码要记住,后面有用。
命令模式:
生成key:
gpg --gen-key
Real name: 名字
Email address: 邮箱(自己的邮箱
You selected this USER-ID:
Change (N)ame, (E)mail, or (O)kay/(Q)uit? o
之后往下,会让你输入用户名和邮箱,还有一个Passphase(密码输入两次,务必牢记,后续要用到)
查看公钥:
gpg --list-keys
pub rsa2048 2020-06-30 [SC] [expires: 2022-06-30]
85B594371E0A38D70243B1E927EDC1D952E45334
uid [ultimate] aaa mailto:11111111@qq.com
sub rsa2048 2020-06-30 [E] [expires: 2022-06-30]
发布公钥:pub 下面那一长串就是key
gpg --keyserver hkp://keyserver.ubuntu.com:11371 --send-keys 85B594371E0A38D70243B1E927EDC1D952E45334
4. 配置maven settings.xml
<servers>
<server>
<id>ossrh</id>
<username>SonaType账号</username>
<password>SonaType密码</password>
</server>
</servers>
<profiles>
<profile>
<id>ossrh</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<!--安装的GnuPG位置-->
<gpg.executable>C:/Program Files (x86)/GnuPG/bin/gpg.exe</gpg.executable>
<gpg.passphrase>生成秘钥时输入的密码</gpg.passphrase>
</properties>
</profile>
</profiles>
5. 配置项目pom.xml
参考下面配置,写你自己的项目信息,插件的东西是固定的
<?xml version="1.0" encoding="UTF-8"?>
<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.0</modelVersion>
<packaging>jar</packaging>
<groupId>com.ddd.ccc</groupId>
<artifactId>aaa</artifactId>
<version>1.0.0</version>
<name>${project.artifactId}</name>
<description>afdfdfsdfdfff</description>
<url>https://</url>
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<dependencies>
...
</dependencies>
<licenses>
<license>
<name>MIT License</name>
<url>https://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://gitee.com/***</url>
<connection>https://gitee.com/***.git</connection>
<developerConnection>https://gitee.com/***</developerConnection>
</scm>
<developers>
<developer>
<name>wuyun</name>
<email>12345@qq.com</email>
<url>https://gitee.com/***</url>
</developer>
</developers>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>utf-8</encoding>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<!-- 是否自动发布--><autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<show>private</show>
<nohelp>true</nohelp>
<charset>UTF-8</charset>
<encoding>UTF-8</encoding>
<docencoding>UTF-8</docencoding>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
6. deploy
在你的项目下:mvn clean deploy
或者IDE中配置好刚才的setting.xml,然后deploy,日志中出现SUCCESS ,成功了。
7. 发布
上面执行完成之后,登陆nexus:https://s01.oss.sonatype.org/...
点击上方的Close,会检测你的jar包是否存在问题,如果存在问题,点击下方的Activity即可查看具体的问题,照着问题修复即可。如果有问题要把原包删除,点击drop即可,再重新deploy。
检测完成后没问题后,上方的release就会变成可点击的状态,点击release后,会收到一份邮件。需要等待一会大概半小时才同步到maven仓库,大概好几个小时才可以可以在 https://search.maven.org/ 中搜到。
至此。已完成将项目发布至中央仓库。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。