org.asciidoctor.jvm.convert
Owner: Andres Almiray
Provides asciidoctor task and conventions (If you need a production-ready version of the AsciidoctorJ plugin for Gradle use a 1.5.x release of 'org.asciidoctor.convert' instead)
https://github.com/asciidoctor/asciidoctor-gradle-plugin
Sources: https://github.com/asciidoctor/asciidoctor-gradle-plugin.git
Add this plugin to your build using the plugins DSL:
plugins {
id("org.asciidoctor.jvm.convert") version "2.3.0"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.asciidoctor:asciidoctor-gradle-jvm:2.3.0") } } apply(plugin = "org.asciidoctor.jvm.convert")
- Applying plugins to all subprojects .