第43章 ビルド通知プラグイン

The build announcements plugin is currently incubating. Please be aware that the DSL and other configuration may change in later Gradle versions.

ビルド通知プラグインはまだ試験的なプラグインです。DSLやその他設定が後のバージョンで変更される可能性もありますので注意してください。

The build announcements plugin uses the announce plugin to send local announcements on important events in the build.

ビルド通知プラグインは、通知プラグインを使って、ビルドで重要なイベントが発生したときにローカル上で通知します。

43.1. 使用方法Usage

To use the build announcements plugin, include in your build script:

ビルド通知プラグインを使うには、ビルドスクリプトに以下を含めます:

例43.1 ビルド通知プラグインの利用

build.gradle

apply plugin: 'build-announcements'

That's it. If you want to tweak where the announcements go, you can configure the announce plugin to change the local announcer.

通知先を調整したい場合は、通知プラグインのコンフィグレーションでローカル通知機能を切り替えられます。

You can also apply the plugin from an init script:

また、初期化スクリプトを使ってプラグインを適用することもできます:

例43.2 初期化スクリプトからビルド通知プラグインを使う

init.gradle

rootProject {
    apply plugin: 'build-announcements'
}