当前位置: 首页 > news >正文

将自己的jar包发布到maven中央仓库(2025-08-29)

将自己的jar包发布到maven中央仓库(2025-08-29)

一、注册账号

https://central.sonatype.com/

在这里插入图片描述
在这里插入图片描述

二、新建命名空间

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
这里的命名空间需要填写github的用户名因为我的用户名是daimao0,所以命名空间填io.github.daimao0
在这里插入图片描述
在这里插入图片描述
这里要求你建一个名为ubuxfc5q7r的公共项目,先创建项目在点confrim
在这里插入图片描述
在这里插入图片描述

三、创建PUSH的账号密码

在这里插入图片描述
在这里插入图片描述

四、GPG准备

GPG 用于创建asc文件用于验证你的文件的正确性和安全性,我们直接去官网下载:

https://gnupg.org/download/index.html
在这里插入图片描述
在这里插入图片描述
用于我是arch-linux, linux系统一般自带gpg
在这里插入图片描述
在这里插入图片描述
输入两遍密码
在这里插入图片描述
这里的密钥发布到keyserver.ubuntu.com服务器上,把你的密钥替换掉 4CB3D9314CD5F1277582A11F4ADBA3851D627E38
备用地址:

keyserver.ubuntu.com 
keys.openpgp.org pgp.mit.edu
gpg --keyserver keyserver.ubuntu.com --send-keys 4CB3D9314CD5F1277582A11F4ADBA3851D627E38

在这里插入图片描述

验证密钥

如果出现了下面的内容说明发布成功
在这里插入图片描述

五、发布jar包

完整pom示例

<?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><groupId>io.github.daimao0</groupId><artifactId>easy-http</artifactId><version>1.0.0</version><name>easy-http</name><description>A simple and easy-to-use HTTP client library for Java</description> <!-- 项目描述 --><url>https://github.com/daimao0/easy-http</url> <!-- 项目URL --><properties><maven.compiler.source>1.8</maven.compiler.source><maven.compiler.target>1.8</maven.compiler.target><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding></properties><dependencies><dependency><groupId>com.squareup.okhttp3</groupId><artifactId>okhttp</artifactId><version>4.12.0</version></dependency><dependency><groupId>com.fasterxml.jackson.core</groupId><artifactId>jackson-databind</artifactId><version>2.19.2</version></dependency></dependencies><licenses><license><name>The Apache Software License, Version 2.0</name><url>http://www.apache.org/licenses/LICENSE-2.0.txt</url></license></licenses><developers><developer><name>daimao0</name><email>daimao2817@gmail.com</email></developer></developers><scm><url>https://github.com/daimao0/easy-http</url><connection>scm:git:https://github.com/daimao0/easy-http.git</connection><developerConnection>scm:git:ssh://git@github.com/daimao0/easy-http.git</developerConnection></scm><profiles><profile><id>ossrh</id><build><plugins><!--   central发布插件    --><plugin><groupId>org.sonatype.central</groupId><artifactId>central-publishing-maven-plugin</artifactId><version>0.5.0</version><extensions>true</extensions><configuration><publishingServerId>ossrh</publishingServerId><tokenAuth>true</tokenAuth></configuration></plugin><!--   source源码插件 --><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-source-plugin</artifactId><version>3.3.1</version><executions><execution><id>attach-sources</id><goals><goal>jar-no-fork</goal></goals></execution></executions></plugin><!--   javadoc插件 --><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-javadoc-plugin</artifactId><version>3.10.0</version><executions><execution><id>attach-javadocs</id><goals><goal>jar</goal></goals></execution></executions></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-gpg-plugin</artifactId><version>3.2.5</version><executions><execution><id>sign-artifacts</id><phase>verify</phase><goals><goal>sign</goal></goals></execution></executions></plugin></plugins></build></profile></profiles>
</project>

pom注意点

下面的配置必须都有

    <groupId>io.github.daimao0</groupId><artifactId>easy-http</artifactId><version>1.0.0</version><name>easy-http</name><description>A simple and easy-to-use HTTP client library for Java</description> <!-- 项目描述 --><url>https://github.com/daimao0/easy-http</url> <!-- 项目URL --><licenses><license><name>The Apache Software License, Version 2.0</name><url>http://www.apache.org/licenses/LICENSE-2.0.txt</url></license></licenses><developers><developer><!--   central发布插件 替换你自己的用户名和邮箱和pgp保持一致   --><name>daimao0</name><email>daimao2817@gmail.com</email></developer></developers><!--   scm 改成你自己的项目地址  --><scm><url>https://github.com/daimao0/easy-http</url><connection>scm:git:https://github.com/daimao0/easy-http.git</connection><developerConnection>scm:git:ssh://git@github.com/daimao0/easy-http.git</developerConnection></scm><profiles><profile><id>ossrh</id><build><plugins><!--   central发布插件    --><plugin><groupId>org.sonatype.central</groupId><artifactId>central-publishing-maven-plugin</artifactId><version>0.5.0</version><extensions>true</extensions><configuration><publishingServerId>ossrh</publishingServerId><tokenAuth>true</tokenAuth></configuration></plugin><!--   source源码插件 --><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-source-plugin</artifactId><version>3.3.1</version><executions><execution><id>attach-sources</id><goals><goal>jar-no-fork</goal></goals></execution></executions></plugin><!--   javadoc插件 --><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-javadoc-plugin</artifactId><version>3.10.0</version><executions><execution><id>attach-javadocs</id><goals><goal>jar</goal></goals></execution></executions></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-gpg-plugin</artifactId><version>3.2.5</version><executions><execution><id>sign-artifacts</id><phase>verify</phase><goals><goal>sign</goal></goals></execution></executions></plugin></plugins></build></profile></profiles>

然后就是执行

mvn clean deploy

在这里插入图片描述
在这里插入图片描述
点一下发布之后就等待就好了

http://www.dtcms.com/a/356987.html

相关文章:

  • 【Web安全】文件上传下载安全测试的全面剖析与实践指南
  • 如何在实际应用中选择Blaze或Apache Gluten?
  • 深入解析PCIe 6.0拓扑架构:从根复合体到端点的完整连接体系
  • 【国内电子数据取证厂商龙信科技】ES 数据库重建
  • shell命令扩展
  • Qt类-扩充_xiaozuo
  • ArcGIS Pro中 Nodata和nan 黑边的处理
  • 沃尔玛AI系统Wally深度拆解:零售业库存周转提速18%,动态定价争议与员工转型成热议点
  • 【lua】Lua 入门教程:从环境搭建到基础编程
  • Java深拷贝与浅拷贝核心解析
  • C primer plus (第六版)第十一章 编程练习第1,2,3,4题
  • typescript postgres@3.x jsonb数据插入绕过类型检测错误问题
  • Linux驱动学习-spi接口
  • 手写一个Spring框架
  • 【树论】树上启发式合并
  • ansible的playbook练习题
  • 短剧小程序系统开发:助力影视行业数字化转型
  • 算法---字符串
  • Speculation Rules API
  • PDF转图片工具实现
  • 天气查询系统
  • 2025_WSL2_Ubuntu20.04_C++20_concept 环境配置
  • el-select多选下拉框出现了e611
  • MySQL 中ORDER BY排序规则
  • 物联网平台中的Swagger(二)安全认证与生产实践
  • Socket编程核心API与结构解析
  • 【C++】掌握类模板:多参数实战技巧
  • 构筑沉浸式3D世界:渲染、资源与体验的协同之道
  • 云计算学习笔记——逻辑卷管理、进程管理、用户提权RAID篇
  • N32G43x Flash 驱动移植与封装实践