Search Gradle plugins

Version 0.19.1 (latest)

0.19.1

Created 04 November 2019.

Plugin to generate the tutorials on www.vogella.com

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.vogella.asciidoctor") version "0.19.1"
}

See also:

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