Search Gradle plugins

org.asciidoctor.jvm.revealjs.base

Base plugin for all AsciidoctorJ Reveal.js tasks & extensions. Provides the revealjs and revealjsPlugins project extensions. (If you need a production-ready version of the AsciidoctorJ plugin for Gradle use a 1.5.x release of 'org.asciidoctor.convert' instead)

https://github.com/asciidoctor/asciidoctor-gradle-plugin

Sources: https://github.com/asciidoctor/asciidoctor-gradle-plugin.git

Version 3.3.2

Created 21 February 2021.

Base plugin for all AsciidoctorJ Reveal.js tasks & extensions. Provides the revealjs and revealjsPlugins project extensions.

Using the plugins DSL:

plugins {
  id("org.asciidoctor.jvm.revealjs.base") version "3.3.2"
}

Using legacy plugin application:

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

apply(plugin = "org.asciidoctor.jvm.revealjs.base")

Using the plugins DSL:

plugins {
  id "org.asciidoctor.jvm.revealjs.base" version "3.3.2"
}

Using legacy plugin application:

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

apply plugin: "org.asciidoctor.jvm.revealjs.base"

Learn how to apply plugins to subprojects