Search Gradle plugins

org.asciidoctor.jvm.convert

Provides asciidoctor task and conventions (If you need a production-ready version of the AsciidoctorJ plugin for Gradle use a 1.5.x release of 'org.asciidoctor.convert' instead)

https://github.com/asciidoctor/asciidoctor-gradle-plugin

Sources: https://github.com/asciidoctor/asciidoctor-gradle-plugin.git

Version 2.0.0-alpha.3

Created 05 August 2018.

Provides asciidoctor task and conventions (If you need a production-ready version of the AsciidoctorJ plugin for Gradle use a 1.5.x release of 'org.asciidoctor.convert' instead)

Using the plugins DSL:

plugins {
  id("org.asciidoctor.jvm.convert") version "2.0.0-alpha.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.asciidoctor:asciidoctor-gradle-jvm:2.0.0-alpha.3")
  }
}

apply(plugin = "org.asciidoctor.jvm.convert")

Using the plugins DSL:

plugins {
  id "org.asciidoctor.jvm.convert" version "2.0.0-alpha.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.asciidoctor:asciidoctor-gradle-jvm:2.0.0-alpha.3"
  }
}

apply plugin: "org.asciidoctor.jvm.convert"

Learn how to apply plugins to subprojects