com.vogella.asciidoc
Owner: Simon Scholz
Plugin to generate the tutorials on www.vogella.com
https://github.com/vogellacompany/com.vogella.gradle.plugins
Sources: https://github.com/vogellacompany/com.vogella.gradle.plugins
Version 0.18.1 (latest)
0.18.1
Created 14 May 2019.
Plugin to generate the tutorials on www.vogella.com
Using the plugins DSL:
plugins {
id("com.vogella.asciidoc") version "0.18.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.vogella.gradle:com.vogella.gradle.plugin.asciidoc:0.18.1")
}
}
apply(plugin = "com.vogella.asciidoc")
Using the plugins DSL:
plugins {
id "com.vogella.asciidoc" version "0.18.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.vogella.gradle:com.vogella.gradle.plugin.asciidoc:0.18.1"
}
}
apply plugin: "com.vogella.asciidoc"