Search Gradle plugins

org.asciidoctor.jvm.leanpub.dropbox-copy

Provides local Dropbox support for Asciidoctor Leanpub plugin (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.3.1

Created 09 February 2021.

Provides local Dropbox support for Asciidoctor Leanpub plugin

Using the plugins DSL:

plugins {
  id("org.asciidoctor.jvm.leanpub.dropbox-copy") version "3.3.1"
}

Using legacy plugin application:

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

apply(plugin = "org.asciidoctor.jvm.leanpub.dropbox-copy")

Using the plugins DSL:

plugins {
  id "org.asciidoctor.jvm.leanpub.dropbox-copy" version "3.3.1"
}

Using legacy plugin application:

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

apply plugin: "org.asciidoctor.jvm.leanpub.dropbox-copy"

Learn how to apply plugins to subprojects