nebula.info-broker
Owner: Nebula Plugins
Plugin to gather information about the environment
https://github.com/nebula-plugins/gradle-info-plugin
Version 5.0.1
5.0.1
Created 28 March 2019.
Gradle plugin collect and provide information about the environment
Using the plugins DSL:
plugins {
id("nebula.info-broker") version "5.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:gradle-info-plugin:5.0.1")
}
}
apply(plugin = "nebula.info-broker")
Using the plugins DSL:
plugins {
id "nebula.info-broker" version "5.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:gradle-info-plugin:5.0.1"
}
}
apply plugin: "nebula.info-broker"