Search Gradle plugins

Version 0.18.2

Created 03 June 2019.

Plugin to generate the tutorials on www.vogella.com

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.vogella.gradle.plugins:com.vogella.gradle.plugin.asciidoc:0.18.2")
  }
}

apply(plugin = "com.vogella.asciidoctor")

Using the plugins DSL:

plugins {
  id "com.vogella.asciidoctor" version "0.18.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.vogella.gradle.plugins:com.vogella.gradle.plugin.asciidoc:0.18.2"
  }
}

apply plugin: "com.vogella.asciidoctor"

Learn how to apply plugins to subprojects