org.asciidoctor.jvm
Owner:
Andres Almiray
Provides html and docbook formatters for all AsciidoctorJ toolchains. . (If you need a production-ready version of the AsciidoctorJ plugin for Gradle use a 4.x release of this plugin instead).
https://docs.asciidoctor.org/gradle-plugin/latest/
Sources: https://github.com/asciidoctor/asciidoctor-gradle-plugin.git
Version 5.0.0-alpha.1 (latest)
Created 19 September 2025.
Provides html and docbook formatters for all AsciidoctorJ toolchains. . (If you need a production-ready version of the AsciidoctorJ plugin for Gradle use a 4.x release of this plugin instead).
Add this plugin to your build using the plugins DSL:
plugins {
id("org.asciidoctor.jvm") version "5.0.0-alpha.1"
}
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("org.asciidoctor.jvm:org.asciidoctor.jvm.gradle.plugin:5.0.0-alpha.1") }
It can then be applied in the precompiled script plugin:plugins { id("org.asciidoctor.jvm") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.asciidoctor.jvm:org.asciidoctor.jvm.gradle.plugin:5.0.0-alpha.1") } } apply(plugin = "org.asciidoctor.jvm")
- Applying plugins to all subprojects .