org.asciidoctor.base
                  Owner:
                  
                    
                    Andres Almiray
                  
                
Base plugin for all asciidoctor document conversion plugins (AsciidoctorJ & AsciidoctorJS) (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
Version 3.3.1
Created 09 February 2021.
Add this plugin to your build using the plugins DSL:
plugins {
  id("org.asciidoctor.base") version "3.3.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.base:org.asciidoctor.base.gradle.plugin:3.3.1") }It can then be applied in the precompiled script plugin:plugins { id("org.asciidoctor.base") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.asciidoctor.base:org.asciidoctor.base.gradle.plugin:3.3.1") } } apply(plugin = "org.asciidoctor.base") - Applying plugins to all subprojects .