Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("nebula.info-scm") version "3.3.4"
}

See also:

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