Search Gradle plugins

Version 1.0 (latest)

Created 30 April 2016.

Allows to get a Theme for Asciidoctor PDF from a remote Git Repository when building the PDF.

Using the plugins DSL:

plugins {
  id("com.github.fwilhe.asciidoctor-pdf-theme") version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.fwilhe.asciidoctor_pdf_theme_gradle_plugin:asciidoctor-pdf-theme-gradle-plugin:1.0")
  }
}

apply(plugin = "com.github.fwilhe.asciidoctor-pdf-theme")

Using the plugins DSL:

plugins {
  id "com.github.fwilhe.asciidoctor-pdf-theme" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.fwilhe.asciidoctor_pdf_theme_gradle_plugin:asciidoctor-pdf-theme-gradle-plugin:1.0"
  }
}

apply plugin: "com.github.fwilhe.asciidoctor-pdf-theme"

Learn how to apply plugins to subprojects