3

Github はダウンロードを無効にしたため、バイナリを公開するには新しいサービス (Bintray.com など) を使用する必要があります。私たちのユースケースでは、(appassemblyr-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 fromGithubToBintray
  3. mvn クリーン パッケージ アプリアセンブラー:アセンブル
  4. chmod +x ターゲット/appassemblyr/bin/fromGithubToBintray
  5. ./target/appassemblyr/bin/fromGithubToBintray

これは印刷されるはずYou did it!です。ここでの目標は、この appassemblyr フォルダーを圧縮して bintray にアップロードすることです。

行われた調査:

4

2 に答える 2

4

問題は、Bintray が SNAPSHOT をサポートしていないことです (Bintray はリリース専用です)。必要なのは、スナップショットを Artifactory にデプロイする 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 にデプロイするには 2 つの方法があると思います。

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. maven-assembly-plugin を pom に追加します

<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. 設定ファイルを作成する

私はあなたのために小さな例を作成しました。アプリアセンブラー ターゲットから 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 appassemblyr:assembly パッケージ

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 appassemblyr:assemble packageを実行してからmvn deploy:deploy-fileを実行すると、アーカイブが作成されて Maven リポジトリにアップロードされます。

于 2013-08-18T10:09:00.743 に答える