com.github.fwilhe.asciidoctor-pdf-theme
Owner: Florian Wilhelm
Allows to get a Theme for Asciidoctor PDF from a remote Git Repository when building the PDF.
https://github.com/fwilhe/asciidoctor-pdf-theme-gradle-plugin
Sources: https://github.com/fwilhe/asciidoctor-pdf-theme-gradle-plugin
Version 1.0 (latest)
1.0
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"