org.asciidoctor.jvm.revealjs
Owner: Andres Almiray
Plugin for generating Reveal.JS based slides from Asciidoc source using AsciidoctorJ. Provides the ascidoctorRevealJs task. (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 4.0.0-alpha.1 (latest)
4.0.0-alpha.1
Created 31 December 2022.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Plugin for generating Reveal.JS based slides from Asciidoc source using AsciidoctorJ. Provides the ascidoctorRevealJs task. (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.jvm.revealjs") 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-jvm-slides:4.0.0-alpha.1")
}
}
apply(plugin = "org.asciidoctor.jvm.revealjs")
Using the plugins DSL:
plugins {
id "org.asciidoctor.jvm.revealjs" 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-jvm-slides:4.0.0-alpha.1"
}
}
apply plugin: "org.asciidoctor.jvm.revealjs"