Search Gradle plugins

org.asciidoctor.jvm.leanpub

Asciidoctor task for creating content suitable for Leanpub (If you need a production-ready version of the AsciidoctorJ plugin for Gradle use a 2.x release of this plugin instead)

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

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

Version 3.0.0-alpha.4

Created 26 December 2019.

Asciidoctor task for creating content suitable for Leanpub (If you need a production-ready version of the AsciidoctorJ plugin for Gradle use a 2.x release of this plugin instead)

Using the plugins DSL:

plugins {
  id("org.asciidoctor.jvm.leanpub") version "3.0.0-alpha.4"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "org.asciidoctor.jvm.leanpub" version "3.0.0-alpha.4"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects