io.github.artificerpi.spring-auto-asciidoc
Owner:
artificerpi
A plugin that helps you test your plugin against a variety of Gradle versions
https://artificerpi.github.io/spring-auto-asciidoc
Sources: https://github.com/artificerpi/spring-auto-asciidoc
Version 0.6.2 (latest)
Created 24 December 2019.
A plugin for auto genenrating documentation based on spring tests
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.artificerpi.spring-auto-asciidoc") version "0.6.2"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.github.artificerpi.spring-auto-asciidoc:io.github.artificerpi.spring-auto-asciidoc.gradle.plugin:0.6.2") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.artificerpi.spring-auto-asciidoc") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.artificerpi.spring-auto-asciidoc:io.github.artificerpi.spring-auto-asciidoc.gradle.plugin:0.6.2") } } apply(plugin = "io.github.artificerpi.spring-auto-asciidoc")
- Applying plugins to all subprojects .