最近發佈了本身的項目到maven
中央倉庫、經過文章記錄一下,第一方便本身,第二幫助他人,我想看這篇文章的同窗確定必定用過maven來構建項目,而且可能用過maven私服,上傳maven
中央倉庫的原由是由於本身編寫了一個腳手架,涉及到一部分和業務無關代碼,想着是作個模塊放到項目裏好仍是獨立出來玩好呢,後來一想,爲了讓你們專一業務,仍是分離出來,並打包上傳到maven
中央倉庫吧。在剛學習maven
的時候知道了倉庫這個概念、本地、私服、雲端。好久一來,都是玩本地,後來玩私服,這不也玩起中央倉庫了,那就分享一下經驗吧,分享的時候我盡力作到調理、清晰、讓你們都看得懂,少走彎路。php
java doc
和代碼源文件<groupId>cn.smallbun.scaffold</groupId>
<artifactId>scaffold-framework</artifactId>
<version>1.0.0</version>
複製代碼
有關項目的一些人可讀的信息和指向你的項目的網站獲取更多,咱們須要的存在name,description和url 。html
<name>smallbun-scaffold-framework</name>
<description>smallbun企業級開發腳手架-核心框架</description>
<url>http://www.smallbun.cn</url>
複製代碼
一種常見且可接受的名稱慣例是使用Maven屬性從座標中將其組裝起來:前端
<name>${project.groupId}:${project.artifactId}</name>
複製代碼
須要聲明用於分發組件的許可證java
<!--Apache-->
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<!--OR MIT-->
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
複製代碼
爲了可以關聯項目,須要添加一個開發人員部分。git
<!--開發人員信息-->
<developers>
<developer>
<name>zuoqinggang</name>
<email>qinggang.zuo@gmail.com</email>
<url>https://www.pingfangushi.com</url>
</developer>
</developers>
複製代碼
與源代碼管理系統的鏈接是一個必需的元素。使用的語法取決於使用的版本控制系統。github
connection
詳細說明只讀鏈接。developerConnection
詳細說明讀取和寫入訪問鏈接詳細信息。url
包含了一個Web
前端,您的SCM
系統的URL
。Maven SCM文檔中提供了有關各類受支持格式的詳細信息,並提供了許多常見示例。 subversionshell
<scm>
<connection>scm:svn:http://subversion.example.com/svn/project/trunk/</connection>
<developerConnection>scm:svn:https://subversion.example.com/svn/project/trunk/</developerConnection>
<url>http://subversion.example.com/svn/project/trunk/</url>
</scm>
複製代碼
githubapache
<scm>
<connection>scm:git:git://github.com/simpligility/ossrh-demo.git</connection>
<developerConnection>scm:git:ssh://github.com:simpligility/ossrh-demo.git</developerConnection>
<url>http://github.com/simpligility/ossrh-demo/tree/master</url>
</scm>
複製代碼
BitBucket服務器
<scm>
<connection>scm:git:git://bitbucket.org/simpligility/ossrh-pipeline-demo.git</connection>
<developerConnection>scm:git:ssh://bitbucket.org:simpligility/ossrh-pipeline-demo.git</developerConnection>
<url>https://bitbucket.org/simpligility/ossrh-pipeline-demo/src</url>
</scm>
複製代碼
BitBucket上的Mercurial框架
<scm>
<connection>scm:hg:http://bitbucket.org/juven/hg-demo</connection>
<developerConnection>scm:hg:https://bitbucket.org/juven/hg-demo</developerConnection>
<url>http://bitbucket.org/juven/hg-demo</url>
</scm>
複製代碼
Apache Maven的Apache Git服務器上的Git
<scm>
<connection>scm:git:https://git-wip-us.apache.org/repos/asf/maven.git</connection>
<developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/maven.git</developerConnection>
<url>https://github.com/apache/maven/tree/${project.scm.tag}</url>
<tag>master</tag>
</scm>
複製代碼
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>cn.smallbun.scaffold</groupId>
<artifactId>scaffold-framework</artifactId>
<version>1.0.0</version>
<packaging>jar</packaging>
<name>smallbun-scaffold-framework</name>
<description>smallbun企業級開發腳手架-核心框架</description>
<url>http://www.smallbun.cn</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>
<name>zuoqinggang</name>
<email>qinggang.zuo@gmail.com</email>
<url>https://www.pingfangushi.com</url>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:pingfangushi/smallbun-scaffold-framework.git</connection>
<developerConnection>scm:git:git@github.com:pingfangushi/smallbun-scaffold-framework.git
</developerConnection>
<url>http://github.com/pingfangushi/smallbun-scaffold-framework/tree/master</url>
</scm>
...
</project>
複製代碼
要生成Javadoc和Source jar文件,您必須配置javadoc和Source Maven插件。
<build>
<plugins>
<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>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
複製代碼
爲了提升中央存儲庫的質量,maven中央倉庫要求工件(除校驗和以外的全部文件)提供PGP簽名,並將公共密鑰分發到諸如pgp.mit.edu的密鑰服務器。
從www.gnupg.org/download/下載GPG
或使用您喜歡的軟件包管理器進行安裝,而後經過運行gpg --version
命令進行驗證。
注:在某些系統上,將使用較新的gpg2:gpg2 --version
密鑰對使咱們可使用GPG對工件進行簽名,而後用戶能夠驗證工件是否已由咱們簽名。執行命令根據提示提供用戶名、郵箱,密碼信息。
gpg --gen-key
複製代碼
gpg --list-keys
複製代碼
列出可使用的私鑰
gpg --list-secret-keys
複製代碼
輸出中pub
一行'/'後的8位HEX
字符串就是密鑰ID
gpg --keyserver hkp://pool.sks-keyservers.net --send-keys <密鑰ID>
複製代碼
--keyserver
參數標識目標密鑰服務器地址,並使用--SEND-keys
是要分發密鑰的keyid
的。您能夠經過gpg --list-secret-keys
來獲取密鑰ID
。一旦提交給密鑰服務器,公鑰將同步到其餘密鑰服務器。
Maven GPG插件用於經過如下配置對組件進行簽名。
<build>
<plugins>
<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>
複製代碼
在未收到以解決的電子郵件以前,請不要進行部署 提交問題不困難,這裏不截圖講了,若是使用域名,須要配置解析到問題URL,將會自動驗證,正常狀況下,白天提交,次日早上就能夠收到回覆了。
打開maven
setting.xml
文件配置加入以下內容
<settings>
<servers>
<server>
<id>ossrh</id>
<username>用戶名</username>
<password>密碼</password>
</server>
</servers>
</settings>
複製代碼
因爲OSSRH
始終運行最新版本的Sonatype Nexus Repository Manager
,所以最好使用Nexus Staging Maven
插件的最新版本。
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<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://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
...
</plugins>
</build>
複製代碼
或者,若是想使用Maven
部署插件(默認),則須要添加完整的distributionManagement
。
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
複製代碼
推薦使用nexus-staging-maven-plugin
發佈
注:settings.xml server元素中的id元素與snapshotRepositoryand 元素中的repository元素以及serverIdNexus Staging Maven插件的配置如何相同
若是版本是發行版(不要以-SNAPSHOT結尾),執行deploy就能夠了。
mvn clean deploy
複製代碼