com.netflix.nebula.info
Owner: Nebula Plugins
Gradle plugin collect and provide information about the environment
https://github.com/nebula-plugins/gradle-info-plugin
Sources: https://github.com/nebula-plugins/gradle-info-plugin.git
Version 13.3.0 (latest)
13.3.0
Created 08 October 2024.
Gradle plugin collect and provide information about the environment
Using the plugins DSL:
plugins {
id("com.netflix.nebula.info") version "13.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.netflix.nebula:gradle-info-plugin:13.3.0")
}
}
apply(plugin = "com.netflix.nebula.info")
Using the plugins DSL:
plugins {
id "com.netflix.nebula.info" version "13.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.netflix.nebula:gradle-info-plugin:13.3.0"
}
}
apply plugin: "com.netflix.nebula.info"