Search Gradle plugins

Version 0.2.2

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.2.2"
}

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.2.2")
  }
}

apply(plugin = "org.m2ci.msp.pandocreveal")

Using the plugins DSL:

plugins {
  id "org.m2ci.msp.pandocreveal" version "0.2.2"
}

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.2.2"
  }
}

apply plugin: "org.m2ci.msp.pandocreveal"

Learn how to apply plugins to subprojects