本来在github上有开源一个java的Excel导入导出工具包(ExcelUtil)
最近在处理bug的时候,看到有位朋友希望作者能把构件上传至Maven中央库中,想来为了方便大家,就按照他博客文章发布构件至Maven中央库中的步骤去做,期间遇到一些问题,在这里记录.
GPG安装
目前直接安装最新的是gpg2
所以,执行任何命令都应该是gpg2
开头
将公钥发布到 PGP 密钥服务器
执行
1
|
|
会有报错
gpg: keyserver send failed: No route to host
修改为,网络上提供的
hkp://ipv4.pool.sks-keyservers.net:80
则会有错误
gpg: keyserver send failed: End of file
或
gpg: keyserver send failed: No name
最终,还是在官网查到了可用的地址:
1
|
|
查询公钥是否发布成功 同理使用这个url
上传构件至OSS中
由于gpg的maven插件,默认使用gpg
命令,所以执行mvn clean deploy
会有如下错误:
1
|
|
应在pom.xml
中增加设置,<properties>
中增加<gpg.executable>gpg2</gpg.executable>
以上是遇到的所有问题.
在release完成后,客服答复是这样的:
Central sync is activated for com.sargeraswang. After you successfully release, your component will be published to Central, typically within 10 minutes, though updates to search.maven.org can take up to two hours.
大概意思是,10分钟内会被发布到中央仓库,两小时内会更新到search.maven.org