我正在运行通过应用程序链接连接的 JIRA 和 Bamboo。在 Bamboo 中,有一个带有以下 POM 的 Maven 项目:
<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.experiments</groupId>
<artifactId>howto-release</artifactId>
<version>${ci.version}</version>
<packaging>jar</packaging>
<name>howto-release</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<ci.version>2.6-SNAPSHOT</ci.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<scm>
<connection>scm:svn:http://svn.xxx.lan/svn/howto-release/trunk</connection>
<developerConnection>scm:svn:http://svn.xxx.lan/svn/howto-release/trunk</developerConnection>
<url>http://svn.xxx.lan/svn/howto-release/trunk</url>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-8</version>
<configuration>
<tagBase>http://svn.xxx.lan/svn/howto-release/tag</tagBase>
<username>release-user</username>
<password>release-user</password>
</configuration>
</plugin>
</plugins>
</build>
Bamboo 中的 maven 目标定义如下所示:
clean install -Dci.version=${bamboo.custom.brmp.name}
到目前为止,我想使用这里描述的合并功能“发布管理”:
- http://www.youtube.com/watch?v=OH-Iq4z8Mj8
- http://blogs.atlassian.com/2010/09/bamboo_jira_release_management_plugin_part_2/
不幸的是,它不像 Atlassian 的家伙所描述的那样工作。“计划配置/杂项”中没有“启用发布管理”复选框。
我也遇到了 JIRA 中的 Release 按钮问题,该按钮当前发出如下错误消息:“Bamboo 服务器尚未返回任何计划。”
有谁知道如何处理 Bamboo 中的自动发布管理插件以及我必须做什么才能使选项可见(请参阅“计划配置/杂项”)?
我正在运行以下版本的 JIRA 和 Bamboo:
- JIRA 版本 v5.1.5#784-sha1:6c72993
- Bamboo 版本 4.4.0 构建 3501 - 13 年 1 月 28 日。
感谢您的帮助!谢谢你。
卡塔琳娜