Search Gradle plugins

Version 1.0.1 (latest)

Created 06 June 2016.

Alternative Groovydoc Plugin for Gradle that Forks the JVM

Using the plugins DSL:

plugins {
  id("io.github.groovylang.groovydoc") version "1.0.1"
}

Using legacy plugin application:

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

apply(plugin = "io.github.groovylang.groovydoc")

Using the plugins DSL:

plugins {
  id "io.github.groovylang.groovydoc" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "null:groovydoc-gradle-plugin:null"
  }
}

apply plugin: "io.github.groovylang.groovydoc"

Learn how to apply plugins to subprojects