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