web-dev-qa-db-ja.com

Mavenはリリースではなくスナップショットにデプロイします

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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example.my.profiler</groupId>
<artifactId>profilerlib</artifactId>
<name>Profiler Lib</name>
<version>1.0.2-SNAPSHOT</version>
<description>Profiler Library</description>
<scm>
    <connection>scm:svn:https://svn.example.com/my-project/profilerlib/trunk
    </connection>
    <developerConnection>scm:svn:https://svn.example.com/my-project/profilerlib/trunk
    </developerConnection>
</scm>
<distributionManagement>
    <!-- Publish the versioned releases here -->
    <repository>
        <id>nexus</id>
        <name>nexus</name>
        <url>http://repo.example.com:8081/nexus/content/repositories/releases
        </url>
    </repository>
    <!-- Publish the versioned releases here -->
    <snapshotRepository>
        <id>nexus</id>
        <name>nexus</name>
        <url>http://repo.example.com:8081/nexus/content/repositories/snapshots
        </url>
    </snapshotRepository>
</distributionManagement>
<!-- download artifacts from this repo -->
<repositories>
    <repository>
        <id>nexus</id>
        <name>EXAMPLE Public Repository</name>
        <url>http://repo.example.com:8081/nexus/content/groups/public</url>
        <releases>
            <enabled>true</enabled>
        </releases>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
    </repository>
</repositories>
<dependencies>
    ...
</dependencies>
<build>
    <finalName>${project.artifactId}</finalName>
    <plugins>
        <plugin>
            <artifactId>maven-release-plugin</artifactId>
            <configuration>
                <tagBase>https://svn.example.com/my-project/profilerlib/tags
                </tagBase>
            </configuration>
        </plugin>
        <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>1.6</source>
                <target>1.6</target>
            </configuration>
        </plugin>
    </plugins>
</build>
<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <powermock.version>1.4.6</powermock.version>
</properties>
</project>
21
Leon Roy
<repository>
    <id>nexus</id><!--etc-->
</repository>
<snapshotRepository>
    <id>nexus</id><!--etc-->
</snapshotRepository>
<!-- etc -->
<repositories>
    <repository>
        <id>nexus</id>
        <!-- etc -->
    </repository>
</repositories>

これが問題です。3つの異なるリポジトリに同じIDを使用しています。 MavenはこれらのリポジトリをIDで管理するため、各IDは一意である必要があります。例えば。 「nexus-releases」、「nexus-snapshots」、「nexus」を使用します。

15

他の誰かがこの問題を抱えていて、既存の答えが彼らの問題を解決しないことに気付いた場合:

release:prepareがリリースタグを作成する前にgitリポジトリにコミットしないことを意味するバグがいくつかあります。これは、release:performが検出したpomファイルのバージョン番号に-SNAPSHOTが含まれており、デプロイヤがスナップショットリポジトリへのリリースを試みることを意味します。

この動作の原因となる最新の欠陥は次のとおりです。 MRELEASE-875 (2.5に影響、2.5.1で修正)

24
Ken

POMは、バージョン番号がSNAPSHOTバージョンであることを示しています。したがって、実行した場合はmvn deploy POMがこの状態の場合、スナップショットはスナップショットリポジトリに自然に展開されます。

リリースを行うには、 リリースプラグイン の目標を使用する必要があります。


一方、あなたはすでにこれを知っているかもしれません、そして本当の答えはショーン・パトリック・フロイドの答えにあります。

12
Stephen C

別の原因でこの問題に失敗しました...リリースプラグインが同じ名前のブランチではなく、タグをチェックアウトしていることを確認してください!

私はこれにファウルしました...リリースを行うための「1.9.0」というブランチを作成してから、mvn release:prepareを実行して「1.9.0」タグも作成しました。 mvn release:performが実行されると、「1.9.0」のgitチェックアウトが実行され、最終的に1.9.0ブランチのHEAD)が取得されました。もちろん、スナップショットが含まれていました。 (1.10-スナップショット)。

それは私の人生の2時間です。私は戻ってきません...将来、私はブランチ名に「-release」サフィックスを追加する予定です(例:「1.9.0-release」)。

3
Dan Haywood

問題が解決しない場合は、親pomで指定しているmaven-release-pluginのバージョンに関連している可能性があります。 maven-release-plugin 間違いなくの2.2.2の指定は失敗し、スナップショットのみをデプロイします(特定の条件下ではまだ完全には説明されていません)。ただし、最新のプラグイン(つまり、pom.xmlからタグを削除する)は機能します。

0
PGP