net.mayope.docs-gradle-plugin
Owner: Lukas Meisegeier
Docs plugin to support the documentation of a project
https://github.com/danakuban/docsGradlePlugin
Sources: https://github.com/danakuban/docsGradlePlugin
Version 1.1.9 (latest)
1.1.9
Created 03 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("net.mayope.docs-gradle-plugin") version "1.1.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.mayope:docs-gradle-plugin:1.1.9")
}
}
apply(plugin = "net.mayope.docs-gradle-plugin")
Using the plugins DSL:
plugins {
id "net.mayope.docs-gradle-plugin" version "1.1.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.mayope:docs-gradle-plugin:1.1.9"
}
}
apply plugin: "net.mayope.docs-gradle-plugin"