Search Gradle plugins

org.asciidoctor.js.convert

Provides asciidoctor task and conventions (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

Version 3.3.2

3.3.2

Created 21 February 2021.

Provides asciidoctor task and conventions

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.asciidoctor.js.convert") version "3.3.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.asciidoctor:asciidoctor-gradle-js:3.3.2")
      }
    }
    
    apply(plugin = "org.asciidoctor.js.convert")
  • Applying plugins to all subprojects .