自动化部署到sonatype的oss maven仓库

我有几个github java项目。 其中一个我手动部署到sonatype的存储库,以便它在maven central发布。

这是一个有点痛苦的过程,因为它似乎涉及太多的箍环以及大量的手动工作,我希望自动化。 所以我实际上停止了这样做,因为这只是太多的工作。 有很多文档表明这是可能的,并且相当多的表明它以某种方式涉及到使用nexus-staging-maven插件进行操作 。 不幸的是,所有这些文档都是(以典型的maven风格)跳过基本的细节,使我能够以直接的方式找出必要的最小步骤,使我能够将发布版本自动发布到sonatype存储库(即没有我手动批准事情)。

那么,我的pom中需要有什么blurb(假设是另一个bog标准的非复杂java项目),包括sonatype存储库的urls,我发现的所有文档似乎都坚持localhost:8081是否是必需的,并且需要maven咒语让它做一个发布(最好通过mvn发布插件 ),让它签名工件,并让它将结果工件部署到sonatype,批准并准备同步到maven central等。

所以,我在寻找在宝石世界中的“宝石推动”的maven替代品,这可以方便地完成工作。 这是一个简单的例子,给出一个由我批准的jar文件,我怎样才能以最少量的大惊小怪来结束maven中心。

我非常感谢已经设置好的pom文件的一些例子,这样我就可以复制和修改。

编辑:

这是我的工作文件:

<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>com.jillesvangurp</groupId>
    <artifactId>jsonj</artifactId>
    <version>1.34-SNAPSHOT</version>

    <name>JsonJ</name>
    <description>A framework for working with json in Java the "proper" way. No mappings or model classes, it's all just lovely json, but in Java.</description>
    <url>https://github.com/jillesvangurp/jsonj</url>

    <licenses>
        <license>
            <name>MIT license</name>
            <url>https://github.com/jillesvangurp/jsonj/blob/master/LICENSE</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <scm>
        <url>git://git@github.com:jillesvangurp/jsonj.git</url>
        <connection>scm:git:git@github.com:jillesvangurp/jsonj.git</connection>
        <developerConnection>scm:git:git@github.com:jillesvangurp/jsonj.git</developerConnection>
    </scm>

    <repositories>
        <repository>
            <id>sonatype-nexus-snapshots</id>
            <name>Sonatype Nexus Snapshots</name>
            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
            <releases>
                <enabled>false</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
    </repositories>

    <distributionManagement>
        <snapshotRepository>
            <id>sonatype-nexus-snapshots</id>
            <name>Sonatype Nexus Snapshots</name>
            <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
        </snapshotRepository>
        <repository>
            <id>sonatype-nexus-staging</id>
            <name>Nexus Release Repository</name>
            <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
        </repository>
    </distributionManagement>

    <developers>
        <developer>
            <id>jillesvangurp</id>
            <name>Jilles van Gurp</name>
            <url>http://www.jillesvangurp.com</url>
            <timezone>gmt+1</timezone>
            <roles>
                <role>Main Developer</role>
            </roles>
        </developer>
    </developers>

    <organization>
        <name>www.jillesvangurp.com</name>
        <url>http://jillesvangurp.com</url>
    </organization>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.5.1</version>
                <configuration>
                    <verbose>true</verbose>
                    <fork>true</fork>
                    <source>1.7</source>
                    <target>1.7</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.8.1</version>
                <executions>
                    <execution>
                        <id>documentation</id>
                        <phase>prepare-package</phase>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.2</version>
                <executions>
                    <execution>
                        <id>gathersource</id>
                        <phase>prepare-package</phase>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.sonatype.plugins</groupId>
                <artifactId>nexus-staging-maven-plugin</artifactId>
                <version>1.6</version>
                <extensions>true</extensions>                
                <configuration>
                    <!-- The Base URL of Nexus instance where we want to stage -->
                    <nexusUrl>https://oss.sonatype.org/</nexusUrl>
                    <serverId>sonatype-nexus-staging</serverId>
                </configuration>
            </plugin>            
        </plugins>
        <extensions>
            <extension>
            <artifactId>wagon-webdav-jackrabbit</artifactId>
            <groupId>org.apache.maven.wagon</groupId>
            <version>2.2</version>
            </extension>
        </extensions>
        <pluginManagement>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-release-plugin</artifactId>
                    <version>2.1</version>
                    <configuration>
                        <mavenExecutorId>forked-path</mavenExecutorId>
                        <useReleaseProfile>false</useReleaseProfile>
                        <arguments>-Psonatype-oss-release</arguments>
                    </configuration>
                </plugin>
            </plugins>
        </pluginManagement>        
    </build>
    <profiles>
        <profile>
            <id>sonatype-oss-release</id>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-source-plugin</artifactId>
                    </plugin>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-javadoc-plugin</artifactId>
                    </plugin>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-gpg-plugin</artifactId>
                        <executions>
                            <execution>
                                <id>sign-artifacts</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>        
    </profiles>

    <dependencies>
        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.8.7</version>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>junit</groupId>
                    <artifactId>junit</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.hamcrest</groupId>
            <artifactId>hamcrest-all</artifactId>
            <version>1.3</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.googlecode.json-simple</groupId>
            <artifactId>json-simple</artifactId>
            <version>1.1.1</version>
            <exclusions>
                <exclusion>
                    <artifactId>junit</artifactId>
                    <groupId>junit</groupId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>xom</groupId>
            <artifactId>xom</artifactId>
            <version>1.2.5</version>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>2.6</version>
        </dependency>
        <dependency>
            <groupId>com.jillesvangurp</groupId>
            <artifactId>efficientstring</artifactId>
            <version>1.11</version>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-core</artifactId>
            <version>2.2.3</version>
        </dependency>
    </dependencies>
</project>

下面的评论(@ aurelien-thieriot)让我走上了正轨,但本身并不够。

最后,我拿了sonatype父母的pom,并将其压平到我的pom文件中。

这使我可以正常使用mvn release插件 。 它将工件上传到sonatype登台存储库。 然后为了释放工件,我实际上需要登台库ID。 您可以从https://oss.sonatype.org/index.html#stagingRepositories中的存储库视图中找到它。

在我的情况下,命令行变成:

mvn nexus-staging:release -Ddescription="Release 1.33" -DstagingRepositoryId=comjillesvangurp-1002

如果没有正确的ID,它不会计算出来,但仍然失败:Sonatype Maven Staging Plugin Issue

所以95%的自动化,但我仍然需要找出stagingRepositoryId每次。

编辑:

mvn release:perform实际上告诉你临时存储库的ID。 我想你可以编写一个脚本,从输出中提取这个id,然后将它传递给下一步。 如果有人知道一些mvn voodoo让mvn release:perform暂存发布以及它,将不胜感激。


为了方便Maven项目,Sonatype提供了一个父POM,您可以使用所有基本配置添加到您的项目中:

https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide#SonatypeOSSMavenRepositoryUsageGuide-Changesto%7B%7Bpom.xml%7D%7D

重要的位是:

  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>

和源代码库的详细信息:

  <scm>
    <connection>scm:svn:http://foo.googlecode.com/svn/trunk/</connection>
    <developerConnection>scm:svn:https://foo.googlecode.com/svn/trunk/</developerConnection>
    <url>http://foo.googlecode.com/svn/trunk/</url>
  </scm>

您还需要将GPG安装到您的计算机上(需要对软件包进行签名),我们的settings.xml正确填写了您的凭据:

  <servers>
    <server>
      <id>sonatype-nexus-snapshots</id>
      <username>your-jira-id</username>
      <password>your-jira-pwd</password>
    </server>
    <server>
      <id>sonatype-nexus-staging</id>
      <username>your-jira-id</username>
      <password>your-jira-pwd</password>
    </server>
  </servers>

之后,你应该可以使用这两个步骤释放:

$ mvn release:prepare

$ mvn release:perform

不幸的是,我不知道有什么方法使流程的手动批准部分自动化(在oss.sonatype.org中)。 但那应该已经为你节省了一些时间。

如上所示,文档可能有点复杂,但是非常完整,并为您提供了各种场景需要了解的所有信息。

编辑:

事实上,我认为我错了,并且在自动化审批过程中有一部分。 有趣。

对于这部分你是对的,细节是相当有限的。 虽然,我希望配置的第一部分已经可以帮助你一点点。 我需要进一步研究这个阶段的东西(或者也许别人已经完成了它)!

EDIT_AGAIN:

我需要尝试一下,但听起来像下面这样:

        <plugins>
            <plugin>
                <groupId>org.sonatype.plugins</groupId>
                <artifactId>nexus-staging-maven-plugin</artifactId>
                <version>1.6</version>
                <extensions>true</extensions>
                <configuration>
                    <!-- The Base URL of Nexus instance where we want to stage -->
                    <nexusUrl>https://oss.sonatype.org/service/local/staging/deploy/maven2/</nexusUrl>
                    <serverId>sonatype-nexus-staging</serverId>
                </configuration>
            </plugin>
        </plugins>

根据文档,部署应该由正确的分段工作流程(包括close)取代,并且会留下最后一步:

$ mvn nexus-staging:release -Ddescription="Yippie!"

将被测试...


所以95%的自动化,但我仍然需要找出stagingRepositoryId每次。

你可以使用mvn nexus-staging:rc-list

特别是,通过执行mvn release:rc-list并使用grep或其他方法来过滤来自某个组ID的输出或者您知道stagingRepositoryId其他子字符串的stagingRepositoryId ,您可以确定完整的stagingRepositoryId

例如,我的项目的组ID是nu.validator并且我的stagingRepositoryId值都是nuvalidator-NNNN形式,其中NNNN部分是从第一个版本开始的数字1000 ,并且每次I时系统增加1发布; 所以nuvalidator-1000nuvalidator-1001等等。

所以在我用于构建的python脚本中,我只是这样做的:

output = subprocess.check_output("mvn nexus-staging:rc-list  -DnexusUrl=https://oss.sonatype.org/ -DserverId=ossrh")
for line in output.split('n'):
    if "nuvalidator" in line:
        stagingRepositoryId = "nuvalidator-" + line[8:23]
        ...

这是因为在mvn nexus-staging:rc-list输出中返回的相关行的格式如下:

...
[INFO] central_bundles-3514 OPEN     Implicitly created (auto staging).
[INFO] central_bundles-3515 OPEN     Implicitly created (auto staging).
[INFO] central_bundles-3521 OPEN     Implicitly created (auto staging).
[INFO] nuvalidator-1008     OPEN     Implicitly created (auto staging).
...
链接地址: http://www.djcxy.com/p/77589.html

上一篇: automate deployment to sonatype's oss maven repository

下一篇: Search for string in dangling commits in Git