org.asciidoctor.js.base
Owner: Andres Almiray
Base plugin for all Asciidoctor.js tasks & extensions. Provides the asciidoctorjs project extension. (If you need a production-ready version of the AsciidoctorJ plugin for Gradle use a 2.x release of this plugin 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.js.base") version "4.0.0"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.asciidoctor:asciidoctor-gradle-js:4.0.0") } } apply(plugin = "org.asciidoctor.js.base")
- Applying plugins to all subprojects .