Search Gradle plugins

Using the plugins DSL:

plugins {
  id("io.freefair.maven-jars") version "3.0.0-rc.8"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "io.freefair.maven-jars" version "3.0.0-rc.8"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects