Release Plugin - 如何将 Release Candidate 放入 Snapshot 目录
Release Plugin - How to put Release Candidate in Snapshot directory
我想使用 Maven Release Plugin 将 Release Candidates 发布到我的 Nexus Snapshot 存储库。
将 RC 部署到 Nexus 不是问题,但我想利用 mvn release:prepare
和 mvn release:perform
提供的工作流程。
我面临的问题是插件不允许我提出的模式 (1.2.3-RC1
)。只接受常规版本模式,这些模式进入 "releases" Nexus 存储库。
如何获取发布插件以将我的发布候选而不是发布放入 SNAPSHOT 存储库?
** 请注意:** 我的 company/another 团队使用快照来存储 RC,并且只有批准的版本才会进入版本。他们不使用 Nexus 的暂存功能。
我不确定其他人是如何将 RC 放入快照存储库的,但看起来他们可能会使用我想避免的常规 "deploy"。
谢谢。
在 maven 中,SNAPSHOT 是每次构建时都可能不同的东西。发布版本将始终产生相同的结果。从这个意义上说,候选发布版是一个发布版,而不是快照——它已被标记,它没有 SNAPSHOT 依赖性,它是可复制的。这并不意味着它已准备好投入生产——它只是一个可重现的构建。只要涉及发布插件,你就是在构建一个发布。
如果您想让其他人看不到该版本,您可能对 Nexus 暂存存储库感兴趣:http://books.sonatype.com/nexus-book/reference/staging.html。
The staging suite in Nexus Pro allows an organization to create a
temporary staging repository and to manage the promotion of components
from a staging repository to a release repository
.
我想使用 Maven Release Plugin 将 Release Candidates 发布到我的 Nexus Snapshot 存储库。
将 RC 部署到 Nexus 不是问题,但我想利用 mvn release:prepare
和 mvn release:perform
提供的工作流程。
我面临的问题是插件不允许我提出的模式 (1.2.3-RC1
)。只接受常规版本模式,这些模式进入 "releases" Nexus 存储库。
如何获取发布插件以将我的发布候选而不是发布放入 SNAPSHOT 存储库?
** 请注意:** 我的 company/another 团队使用快照来存储 RC,并且只有批准的版本才会进入版本。他们不使用 Nexus 的暂存功能。
我不确定其他人是如何将 RC 放入快照存储库的,但看起来他们可能会使用我想避免的常规 "deploy"。
谢谢。
在 maven 中,SNAPSHOT 是每次构建时都可能不同的东西。发布版本将始终产生相同的结果。从这个意义上说,候选发布版是一个发布版,而不是快照——它已被标记,它没有 SNAPSHOT 依赖性,它是可复制的。这并不意味着它已准备好投入生产——它只是一个可重现的构建。只要涉及发布插件,你就是在构建一个发布。
如果您想让其他人看不到该版本,您可能对 Nexus 暂存存储库感兴趣:http://books.sonatype.com/nexus-book/reference/staging.html。
The staging suite in Nexus Pro allows an organization to create a temporary staging repository and to manage the promotion of components from a staging repository to a release repository
.