Search Gradle plugins

Version 0.18.0

0.18.0

Created 25 April 2019.

Plugin to generate the tutorials on www.vogella.com

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.vogella.asciidoc") version "0.18.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.vogella.gradle:com.vogella.gradle.plugin.asciidoc:0.18.0")
      }
    }
    
    apply(plugin = "com.vogella.asciidoc")
  • Applying plugins to all subprojects .