アプリケーション リンクで接続されている 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 の説明どおりには機能しません。「プラン構成・その他」に「リリース管理を有効にする」チェックボックスがありません。
現在、「Bamboo サーバーからプランが返されていません」というようなエラー メッセージが表示される JIRA の [リリース] ボタンにも問題があります。
Bamboo で自動化されたリリース管理プラグインを処理する方法と、オプションを表示するために何をしなければならないかを知っている人はいますか (「構成の計画/その他」を参照)。
次のバージョンの JIRA と Bamboo を実行しています。
- JIRA バージョン v5.1.5#784-sha1:6c72993
- Bamboo バージョン 4.4.0 ビルド 3501 - 2013 年 1 月 28 日。
あなたの助けに感謝します!! ありがとうございました。
カタリナ