Search Gradle plugins

Version 0.1.1 (latest)

Created 14 November 2015.

A plugin for building DataStax Asciidoctor curriculum

Using the plugins DSL:

plugins {
  id("com.timberglund.presentation.plugin") version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.timberglund:asciidoctor-presentation:0.1.1")
  }
}

apply(plugin = "com.timberglund.presentation.plugin")

Using the plugins DSL:

plugins {
  id "com.timberglund.presentation.plugin" version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.timberglund:asciidoctor-presentation:0.1.1"
  }
}

apply plugin: "com.timberglund.presentation.plugin"

Learn how to apply plugins to subprojects