Chapter 42. The Build Announcements Plugin

The build announcements is incubating (see Section C.1.2, “Incubating”).

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

42.1. Usage

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

Example 42.1. Using the build announcements plugin

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:

Example 42.2. Using the build announcements plugin from an init script

init.gradle

rootProject {
    apply plugin: 'build-announcements'
}