3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Jenkinsプラグインのリリースがエラーなく完了してもアップデートセンターに表示されない

3
Last updated at Posted at 2014-05-19

先日Jenkinsプラグインのアップデートを行ったのですが上手くリリース出来ず、Jenkins日本ユーザー会のメーリングリストで質問して解決する事が出来ました。
ikikkoさん、曽我部さん、ありがとうございました。

私が困った事と、その解決方法をメモしておきます。

困った事

以下のコマンドでアップデートリリースの作業を行い、コマンドがエラーなく終了したのですが、
新しいバージョンのプラグインがアップデートセンターに出てきませんでした。

$ mvn release:prepare release:perform

解決方法

上記のコマンドではなく、以下のコマンドを実行します。

$ mvn org.apache.maven.plugins:maven-release-plugin:2.5:prepare 
$ mvn org.apache.maven.plugins:maven-release-plugin:2.5:perform 

以上で正常にリリースされます。
何のエラーも出ずに失敗しているのが厄介ですね。
すでにリリース経験がある方は、この事象にはまる気がしました。。。

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?