io.github.ngyewch.aggregate-javadoc
Owner: Nick Ng
Gradle Aggregate Javadoc plugin.
https://github.com/ngyewch/gradle-aggregate-javadoc-plugin
Sources: https://github.com/ngyewch/gradle-aggregate-javadoc-plugin.git
Using the plugins DSL:
plugins {
id("io.github.ngyewch.aggregate-javadoc") version "0.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.ngyewch.gradle:gradle-aggregate-javadoc-plugin:0.1.3")
}
}
apply(plugin = "io.github.ngyewch.aggregate-javadoc")
Using the plugins DSL:
plugins {
id "io.github.ngyewch.aggregate-javadoc" version "0.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.ngyewch.gradle:gradle-aggregate-javadoc-plugin:0.1.3"
}
}
apply plugin: "io.github.ngyewch.aggregate-javadoc"