3

由于 Github 禁用了下载,我们需要使用新服务(如 Bintray.com)来发布我们的二进制文件。对于我们的用例,我需要构建一个包(使用 appassembler-maven-plugin),然后 zip 和 tar.gz 这个构建并将其部署到 bintray。

如果每晚构建将由 travis 发布并使用 mvn 发布插件手动发布,那就太好了。

目前 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>myproject</groupId>
    <artifactId>myproject</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <packaging>jar</packaging>

    <scm>
        <url>https://github.com/d0x/fromGithubToBintray</url>
        <connection>scm:git:git://github.com/d0x/fromGithubToBintray.git</connection>
        <developerConnection>scm:git:git@github.com:d0x/fromGithubToBintray.git</developerConnection>
    </scm>

    <developers>
        <developer>
            <name>Christian Schneider</name>
            <url>https://github.com/d0x</url>
            <id>d0x</id>
        </developer>
    </developers>

<!--    <distributionManagement> -->
<!--        <repository> -->
<!--            <id>bintray</id> -->
<!--            <url>https://api.bintray.com/maven/d0x/fromGithubToBintray/downloads</url> -->
<!--        </repository> -->
<!--    </distributionManagement> -->


    <properties>
        <mainClass>fromGithubToBintray.Main</mainClass>

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

    <dependencies>
        <!-- ... -->        
    </dependencies>

    <build>
        <plugins>

            <!-- To build a clean binary pacakge to distribute -->
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>appassembler-maven-plugin</artifactId>
                <version>1.4</version>
                <configuration>
                    <programs>
                        <program>
                            <mainClass>${mainClass}</mainClass>
                            <name>fromGithubToBintray</name>
                        </program>
                    </programs>

                    <extraJvmArguments>-Djava.awt.headless=true</extraJvmArguments>
                </configuration>
            </plugin>

            <!-- To specify the Java Version -->
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.0</version>
                <configuration>
                    <source>${java-version}</source>
                    <target>${java-version}</target>
                </configuration>
            </plugin>

            <plugin>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.4.1</version>
                <configuration>
                    <useReleaseProfile>false</useReleaseProfile>
                    <releaseProfiles>release</releaseProfiles>
                    <autoVersionSubmodules>true</autoVersionSubmodules>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

如何调整 pom 文件来做到这一点?

复制:

我把小例子上传到了github:https ://github.com/d0x/fromGithubToBintray

要执行它,请执行以下操作:

  1. git 克隆https://github.com/d0x/fromGithubToBintray.git
  2. cd from GithubToBintray
  3. mvn clean package appassembler:assemble
  4. chmod +x 目标/appassembler/bin/fromGithubToBintray
  5. ./target/appassembler/bin/fromGithubToBintray

这应该打印You did it!。现在的目标是上传 compress 并将这个 appassembler 文件夹上传到 bintray。

做过的研究:

  • 本教程展示了如何使用 Bintray.com 发布到 Maven 存储库。
  • 我还看到 Netty 项目在 bintray 上托管它的下载。但是在他们的 Poms 中,无论是在 Jenkins 中,我都没有看到与 bintray 相关的东西。
4

2 回答 2

4

问题是 Bintray 不支持 SNAPSHOT(Bintray 仅用于发布)。您需要的是 Artifactory+Bintray 组合,它将快照部署到 Artifactory,并且偶尔(当您需要时)向 Bintray 发布“生产就绪”版本。

根据您项目的性质,您可能有资格获得oss.jfrog.org上的免费帐户。要求是您的可交付成果是包含在 JCenter 中的开源库/产品。

从 Artifactory 推送到 Bintray 是一个非常简单的过程,您只需单击 Artifactory UI 中的按钮或执行 REST 调用即可执行此操作。请记住 - 它必须是一个版本,而不是一个 SNAPSHOT。

有多种方法可以将 SNAPSHOT 转换为发布版本,包括手动更改 POM 中的版本、Maven 发布插件等。当您使用 oss.jfrog.org 作为您的 Artifactory 服务器时,它包含一个特殊的插件,可以将 SHAPSHOT 转换为发布并一次性部署到 Bintray。

于 2013-08-19T12:56:53.680 回答
3

我认为有两种方法可以将您的 zip/tar.gz 文件部署到 bintray.com。

1. 通过 CI 上传

您可以使用 curl 将通用文件上传到 bintrac.com。

curl -T <FILE.EXT> -u$USER:<API_KEY> https://api.bintray.com/content/$USER/generic/<UR_COOL_PACKAGE_NAME>/<VERSION_NAME>/<FILE_TARGET_PATH>

您可以使用 CI/travis 在 maven 上构建项目,并使用 curl 上传指定的文件。travis应该可以。看这里

2. 使用 Maven 部署

使用 maven,您可以使用 mvn deploy:deploy-file 部署指定的文件,例如 *.zip 。也许这对您来说是一个解决方案?

回答后编辑

要创建 *.zip 存档,您可以使用maven-assembly-plugin

1.在pom中添加maven-assembly-plugin

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-assembly-plugin</artifactId>
    <version>2.4</version>
    <executions>
        <execution>
            <phase>package</phase>
            <goals>
                <goal>single</goal>
            </goals>
        </execution>
    </executions>
    <configuration>
        <descriptor>src/main/assembly/bin.xml</descriptor>
    </configuration>
</plugin>

2.创建配置文件

我为你创建了一个小例子。它将从您的 appassembler 目标中压缩 bin 文件夹。

<?xml version="1.0" encoding="UTF-8"?>
<assembly
    xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
    <id>distribution</id>
    <formats>
        <format>zip</format>
    </formats>
    <fileSets>
        <fileSet>
            <directory>target/appassembler/bin</directory>
            <outputDirectory></outputDirectory>
        </fileSet>
    </fileSets>
</assembly>

3.执行maven

命令: mvn clean appassembler:assemble package

4.上传通用文件

使用 Maven 上传您的通用文件。你应该看看exec-maven-plugin 或者你使用 mvn deploy:deploy-file插件。如果你想使用它,它应该是这样的:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-deploy-plugin</artifactId>
    <version>2.6</version>
    <goals>
        <goal>deploy-file</goal>
    </goals>
    <configuration>
        <repositoryId>release</repositoryId>
        <packaging>zip</packaging>
        <generatePom>false</generatePom>
        <url>http://repository-url</url>
        <artifactId>${project.artifactId}</artifactId>
        <groupId>${project.groupId}</groupId>
        <version>${project.version}</version>
        <file>target/filename.zip</file>
    </configuration>
</plugin>
...
<distributionManagement>
<repository>
    <id>releases</id>
    <name>My Artifactory-... server</name>
    <url>http://url-to-repository</url>
</repository>
</distributionManagement>

就我而言,我来自 maven 的 settings.xml 如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<settings
    xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"
    xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <servers>
        <server>
            <username>my-user</username>
            <password>my-password</password>
            <id>releases</id>
        </server>
    </servers>
    <profiles>
        <profile>
            <repositories>
                <repository>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                    <id>releases</id>
                    <name>Name</name>
                    <url>http://serverurl</url>
                </repository>
            </repositories>
            <id>artifactory</id>
        </profile>
    </profiles>
    <activeProfiles>
        <activeProfile>artifactory</activeProfile>
    </activeProfiles>
</settings>

如果您现在执行mvn clean appassembler:assemble package然后mvn deploy:deploy-file您将创建一个存档并将其上传到您的 maven 存储库。

于 2013-08-18T10:09:00.743 回答