org.asciidoctor.jvm.revealjs.base
Owner: Andres Almiray
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 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
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 3.x release of this plugin instead)
Using the plugins DSL:
plugins {
id("org.asciidoctor.jvm.revealjs.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-jvm-slides:4.0.0-alpha.1")
}
}
apply(plugin = "org.asciidoctor.jvm.revealjs.base")
Using the plugins DSL:
plugins {
id "org.asciidoctor.jvm.revealjs.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-jvm-slides:4.0.0-alpha.1"
}
}
apply plugin: "org.asciidoctor.jvm.revealjs.base"