io.github.jcohy.gradle.javadoc-conventions
Owner: Jcohy
Defaults the Javadoc
https://github.com/jcohy/jcohy-gradle-plugins
Sources: https://github.com/jcohy/jcohy-gradle-plugins
Using the plugins DSL:
plugins {
id("io.github.jcohy.gradle.javadoc-conventions") version "3.2.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.jcohy:jcohy-javadoc:3.2.0.2")
}
}
apply(plugin = "io.github.jcohy.gradle.javadoc-conventions")
Using the plugins DSL:
plugins {
id "io.github.jcohy.gradle.javadoc-conventions" version "3.2.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.jcohy:jcohy-javadoc:3.2.0.2"
}
}
apply plugin: "io.github.jcohy.gradle.javadoc-conventions"