org.m2ci.msp.pandocreveal
Owner: Ingmar Steiner
Apply common build logic to a slideshow project using Pandoc and reveal.js
https://github.com/m2ci-msp/gradle-pandoc-reveal-plugin
Sources: https://github.com/m2ci-msp/gradle-pandoc-reveal-plugin
Version 0.3.0-SNAPSHOT
0.3.0-SNAPSHOT
Created 25 February 2018.
Apply common build logic to a slideshow project using Pandoc and reveal.js
Using the plugins DSL:
plugins {
id("org.m2ci.msp.pandocreveal") version "0.3.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.m2ci.msp:gradle-pandoc-reveal-plugin:0.3.0-SNAPSHOT")
}
}
apply(plugin = "org.m2ci.msp.pandocreveal")
Using the plugins DSL:
plugins {
id "org.m2ci.msp.pandocreveal" version "0.3.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.m2ci.msp:gradle-pandoc-reveal-plugin:0.3.0-SNAPSHOT"
}
}
apply plugin: "org.m2ci.msp.pandocreveal"