发布jar到maven中央仓库

一、介绍

我们平时都会使用search.maven.org 去搜索某个工具包的最新版本。但是开发了很多年,我们自己也可能能沉淀出一些东西或者工具包需要发布来供别人使用,或者方便自己使用。那么我们也可以发布自己的东西到maven中央仓库。

二、创建ISSUE

然后我们在support 的地方能看到相关介绍。

https://central.sonatype.org/pages/support/#producers
发布jar到maven中央仓库_第1张图片

然后我们顺着痕迹,就找到了 OSSRH Issue Tracker

然后我们点进去就看到好多人的提交。我们 依样画葫芦。

发布jar到maven中央仓库_第2张图片

后边还有几个关键点要填写一下

发布jar到maven中央仓库_第3张图片

如果你是自己的网址 需要添加一个TXT记录,操作如下。

How do I set the TXT record needed to prove ownership of my Web Domain? - The Central Repository Documentation

这个TXT的记录值 就是你提交新建的 jira issue 的问题号码
发布jar到maven中央仓库_第4张图片
通过如下命令可以查看:

Resolve-DnsName yourdomain.com -Type TXT

审核完成后它会关闭你的issue,或者有什么问题它会告知你,你解决后需要重新打开issue。

三、GPG安装与生成

1. GPG签名

如果你没有设置过GPG签名,需要设置。
首先下载GPG工具
www.gnupg.org/download/
发布jar到maven中央仓库_第5张图片
选择其中一个即可
执行一下脚本

gpg --generate-key

生成之后会填写一些个人信息
中间会填写一个passphrase,这个要记住。
发布jar到maven中央仓库_第6张图片

2. GPG签名上传

可以选择以下三个任意一个即可。

gpg --keyserver keyserver.ubuntu.com --send-keys 【your public key】
gpg --keyserver keys.openpgp.org --send-keys 【your public key】
gpg --keyserver pgp.mit.edu --send-keys 【your public key】

通过以下命令校验是否成功

gpg --keyserver keyserver.ubuntu.com --recv-keys 【your public key】
gpg --keyserver keys.openpgp.org  --recv-keys 【your public key】
gpg --keyserver pgp.mit.edu --recv-keys 【your public key】

四、settings.xml设置

<profiles>
    <profile>
      <id>sonatypeid>
      <properties>
        <gpg.executable>gpggpg.executable>
        <gpg.passphrase>passphrase密码gpg.passphrase>
      properties>
    profile>
  profiles>
<servers>
    <server>
      <id>sonatypeid>
      <username>sonatype账号username>
      <password>sonatype密码password>
    server>
servers>

五、pom.xml配置

<groupId>com.us-forevergroupId>
    <artifactId>tinyint-resolverartifactId>
    <version>1.0version>
    <name>tinyint-resolvername>
    <description>The type converter from byte to int in Mybatis-Generatordescription>
    <url>https://github.com/songyaxu/tinyint-resolverurl>
    <licenses>
        <license>
            <name>The Apache License, Version 2.0name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txturl>
        license>
    licenses>

    <developers>
        <developer>
            <name>姓名name>
            <email>邮箱email>
            <roles>
                <role>developerrole>
            roles>
            <timezone>+8timezone>
        developer>
    developers>

    <scm>
        <connection>scm:git:https://github.com/songyaxu/tinyint-resolver.gitconnection>
       <developerConnection>scm:git:https://github.com/songyaxu/tinyint-resolver.gitdeveloperConnection>
        <url>https://github.com/songyaxu/tinyint-resolverurl>
        <tag>v${project.version}tag>
    scm>

    <distributionManagement>
        <snapshotRepository>
            
            <id>sonatypeid>
            <url>https://s01.oss.sonatype.org/content/repositories/snapshots/url>
        snapshotRepository>
        <repository>
          
            <id>sonatypeid>
            <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/url>
        repository>
    distributionManagement>

    <build>
        <plugins>
            
            <plugin>
                <groupId>org.apache.maven.pluginsgroupId>
                <artifactId>maven-source-pluginartifactId>
                <version>3.2.1version>
                <executions>
                    <execution>
                        <phase>packagephase>
                        <goals>
                            <goal>jar-no-forkgoal>
                        goals>
                    execution>
                executions>
            plugin>
            
            <plugin>
                <groupId>org.apache.maven.pluginsgroupId>
                <artifactId>maven-javadoc-pluginartifactId>
                <version>3.5.0version>
                <configuration>
                    <additionalJOptions>
                        <additionalJOption>-Xdoclint:noneadditionalJOption>
                    additionalJOptions>
                configuration>
                <executions>
                    <execution>
                        <phase>packagephase>
                        <goals>
                            <goal>jargoal>
                        goals>
                    execution>
                executions>
            plugin>
            
            <plugin>
                <groupId>org.apache.maven.pluginsgroupId>
                <artifactId>maven-gpg-pluginartifactId>
                <version>3.0.1version>
                <configuration>
                    <gpgArguments>
                        <arg>--pinentry-modearg>
                        <arg>loopbackarg>
                    gpgArguments>
                configuration>
                <executions>
                    <execution>
                        <id>sign-artifactsid>
                        <phase>verifyphase>
                        <goals>
                            <goal>signgoal>
                        goals>
                    execution>
                executions>
            plugin>
        plugins>
    build>

六、上传发布

mvn clean deploy -Dgpg.passphrase-[passphrase密码]

执行成功后登录你的地址:
https://s01.oss.sonatype.org/#stagingRepositories
登录后点击左侧的stagingRepositories
发布jar到maven中央仓库_第7张图片

然后会在右侧展示你上传的包,有可能会有几分钟延迟。

选中后会看到图片3的位置会展示具体校验信息,没有错误就点击上边的close。

close成功后,可以进行release操作。

发布jar到maven中央仓库_第8张图片
操作完成后就可以在advanced search搜索到自己的jar包了。

发布jar到maven中央仓库_第9张图片
过一段时间(大概4个小时左右)后就可以在search.maven.org搜索到自己的工具包了!

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