Search Gradle plugins

org.asciidoctor.decktape

Adds convenience rules to compliment Asciidoctor slide task types (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 4.0.0-alpha.1 (latest)

4.0.0-alpha.1

Created 31 December 2022.

Adds convenience rules to compliment Asciidoctor slide task types (If you need a production-ready version of the AsciidoctorJ plugin for Gradle use a 3.x release of this plugin instead)

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.asciidoctor.decktape") version "4.0.0-alpha.1"
}

See also:

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