タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

HudsonPluginに関するkyon_mmのブックマーク (3)

  • Hudsonプラグイン開発 - wyukawa's diary

    Hudsonプラグイン開発について調べたことを書いてみたいと思います。環境は下記の通りです。 OS Vista JDK 1.6 Maven 2.0.10 http://wiki.hudson-ci.org/display/HUDSON/Plugin+tutorialにしたがってやってみます。このプラグインはビルド実行するとhelloと出力します。 %USERPROFILE%\.m2\settings.xmlを下記のように記述します。 <settings> <profiles> <profile> <id>hudson</id> <activation> <activeByDefault /> </activation> <pluginRepositories> <pluginRepository> <id>m.g.o-public</id> <url>http://maven.glassf

  • 継続的インテグレーションツール Hudson のプラグインを作成 - なんとなくな Developer のメモ

    CI(継続的インテグレーション)ツールの一つである Hudson は以下のような点で個人的に気に入っている。 インストール(実行環境の構築や設定など)が容易 プラグインによる機能追加が容易 ビルド結果等のファイル構成が非常にシンプル REST 的なリモートアクセス API が用意(XML、JSON) Apache Tomcat の webapps ディレクトリにダウンロードした hudson.war ファイルを配置して Tomcat を起動するだけで使えるし、hudson の起動時に作成された .hudson ディレクトリの plugins ディレクトリにプラグイン(.hpi ファイル)を配置して Tomcat を再起動するだけでプラグインが使えるようになるなど、手間がかからず手軽に使い始められる。 今回は Hudson プラグインの自作に興味がわいたので、Extend Hudsonのサイ

    継続的インテグレーションツール Hudson のプラグインを作成 - なんとなくな Developer のメモ
  • Plugin tutorial - hudson - Hudson Wiki

    This document, together with the hello-world plugin, shows you how to get started with the plugin development. What Can Plugins Do? Hudson defines extensibility points, which are interfaces or abstract classes that model an aspect of a build system. Those interfaces define contracts of what need to be implemented, and Hudson allows plugins to contribute those implementations. See this document for

  • 1