Search Gradle plugins

Using the plugins DSL:

plugins {
  id("io.freefair.aggregate-javadoc-jar") version "6.3.0"
}

Using legacy plugin application:

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

apply(plugin = "io.freefair.aggregate-javadoc-jar")

Using the plugins DSL:

plugins {
  id "io.freefair.aggregate-javadoc-jar" version "6.3.0"
}

Using legacy plugin application:

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

apply plugin: "io.freefair.aggregate-javadoc-jar"

Learn how to apply plugins to subprojects