Search Gradle plugins

Using the plugins DSL:

plugins {
  id("io.freefair.maven-plugin") version "4.1.3"
}

Using legacy plugin application:

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

apply(plugin = "io.freefair.maven-plugin")

Using the plugins DSL:

plugins {
  id "io.freefair.maven-plugin" version "4.1.3"
}

Using legacy plugin application:

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

apply plugin: "io.freefair.maven-plugin"

Learn how to apply plugins to subprojects