nebula.info-basic
Owner: Nebula Plugins
Plugin to gather information about the environment
https://github.com/nebula-plugins/gradle-info-plugin
Using the plugins DSL:
plugins {
id("nebula.info-basic") version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("pl.allegro.tech.build:axion-release-plugin:1.2.0")
}
}
apply(plugin = "nebula.info-basic")
Using the plugins DSL:
plugins {
id "nebula.info-basic" version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "pl.allegro.tech.build:axion-release-plugin:1.2.0"
}
}
apply plugin: "nebula.info-basic"