Search Gradle plugins

Version 13.3.0 (latest)

13.3.0

Created 08 October 2024.

Gradle plugin collect and provide information about the environment

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.netflix.nebula.info-scm") version "13.3.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.netflix.nebula:gradle-info-plugin:13.3.0")
      }
    }
    
    apply(plugin = "com.netflix.nebula.info-scm")
  • Applying plugins to all subprojects .