Search Gradle plugins

org.asciidoctor.decktape.base

Any slide deck generated by supported Asciidoctor slide task types can be converted to PDF (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.2.0

3.2.0

Created 12 April 2020.

Any slide deck generated by supported Asciidoctor slide task types can be converted to PDF

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.asciidoctor.decktape.base") version "3.2.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.asciidoctor:asciidoctor-gradle-slides-export:3.2.0")
      }
    }
    
    apply(plugin = "org.asciidoctor.decktape.base")
  • Applying plugins to all subprojects .