Search Gradle plugins

Version 13.1.2 (latest)

13.1.2

Created 30 July 2024.

Gradle plugin collect and provide information about the environment

Using the plugins DSL:

plugins {
  id("com.netflix.nebula.info-props") version "13.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.netflix.nebula:gradle-info-plugin:13.1.2")
  }
}

apply(plugin = "com.netflix.nebula.info-props")

Using the plugins DSL:

plugins {
  id "com.netflix.nebula.info-props" version "13.1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.netflix.nebula:gradle-info-plugin:13.1.2"
  }
}

apply plugin: "com.netflix.nebula.info-props"

Learn how to apply plugins to subprojects