Search Gradle plugins

Version 0.18.1 (latest)

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"

Learn how to apply plugins to subprojects