Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("co.elastic.license-headers") version "1.0.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("co.elastic.gradle:license-headers:1.0.4")
      }
    }
    
    apply(plugin = "co.elastic.license-headers")
  • Applying plugins to all subprojects .