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 4.0.0-alpha.1 (latest)

Created 31 December 2022.

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 3.x release of this plugin instead)

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "org.asciidoctor.decktape.base"

Learn how to apply plugins to subprojects