ch.tutteli.dokka
Owner: Robert Stoll
Applies the dokka plugin and provides a javadocJar Task.
https://github.com/robstoll/tutteli-gradle-plugins
Sources: https://github.com/robstoll/tutteli-gradle-plugins.git
Version 0.33.0
0.33.0
Created 18 April 2020.
Applies JetBrain's dokka plugin, configures it by conventions and provides a javadocJar task.
Using the plugins DSL:
plugins {
id("ch.tutteli.dokka") version "0.33.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ch.tutteli:tutteli-gradle-dokka:0.33.0")
}
}
apply(plugin = "ch.tutteli.dokka")
Using the plugins DSL:
plugins {
id "ch.tutteli.dokka" version "0.33.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ch.tutteli:tutteli-gradle-dokka:0.33.0"
}
}
apply plugin: "ch.tutteli.dokka"