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 3.0.0

Created 21 January 2020.

Adds convenience rules to compliment Asciidoctor slide task types

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.asciidoctor:asciidoctor-gradle-slides-export:3.0.0")
  }
}

apply(plugin = "org.asciidoctor.decktape")

Using the plugins DSL:

plugins {
  id "org.asciidoctor.decktape" version "3.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.asciidoctor:asciidoctor-gradle-slides-export:3.0.0"
  }
}

apply plugin: "org.asciidoctor.decktape"

Learn how to apply plugins to subprojects