io.github.danakuban.docs-gradle-plugin
Owner: Dana
Docs plugin to support the documentation of a project
https://github.com/danakuban/docsGradlePlugin
Sources: https://github.com/danakuban/docsGradlePlugin
Version 1.2.0 (latest)
1.2.0
Created 04 August 2022.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Docs plugin to support the documentation of a project
Using the plugins DSL:
plugins {
id("io.github.danakuban.docs-gradle-plugin") version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.danakuban:docs-gradle-plugin:1.2.0")
}
}
apply(plugin = "io.github.danakuban.docs-gradle-plugin")
Using the plugins DSL:
plugins {
id "io.github.danakuban.docs-gradle-plugin" version "1.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.danakuban:docs-gradle-plugin:1.2.0"
}
}
apply plugin: "io.github.danakuban.docs-gradle-plugin"