Search Gradle plugins

Using the plugins DSL:

plugins {
  id("io.freefair.war-overlay") version "0.9.7-maven"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.freefair.gradle:gradle-plugins:0.9.7-maven")
  }
}

apply(plugin = "io.freefair.war-overlay")

Using the plugins DSL:

plugins {
  id "io.freefair.war-overlay" version "0.9.7-maven"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.freefair.gradle:gradle-plugins:0.9.7-maven"
  }
}

apply plugin: "io.freefair.war-overlay"

Learn how to apply plugins to subprojects