xyz.tynn.jvm.kdoc
Owner:
Christian Schmitz
Provide KDoc Elements JAR for the Java Library software components.
https://github.com/tynn-xyz/BuildSrc/blob/master/README.md
Sources: https://github.com/tynn-xyz/BuildSrc/
Version 0.2.1 (latest)
Created 20 November 2021.
Provide KDoc Elements JAR for the Java Library software components.
Using the plugins DSL:
plugins {
id("xyz.tynn.jvm.kdoc") version "0.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.xyz.tynn.buildsrc:elements:0.2.1")
}
}
apply(plugin = "xyz.tynn.jvm.kdoc")
Using the plugins DSL:
plugins {
id "xyz.tynn.jvm.kdoc" version "0.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.xyz.tynn.buildsrc:elements:0.2.1"
}
}
apply plugin: "xyz.tynn.jvm.kdoc"