Search Gradle plugins

com.eitan.course

Transitively applies the asciidoctor gradle plugin with a particular default configuration, custom html extensions, and bundled artifacts

https://github.com/eitansuez/course-plugin

Sources: https://github.com/eitansuez/course-plugin.git

Version 0.5 (latest)

Created 18 January 2018.

Transitively applies the asciidoctor gradle plugin with a particular default configuration, custom html extensions, and bundled artifacts

Using the plugins DSL:

plugins {
  id("com.eitan.course") version "0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.eitan:course-plugin:0.5")
  }
}

apply(plugin = "com.eitan.course")

Using the plugins DSL:

plugins {
  id "com.eitan.course" version "0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.eitan:course-plugin:0.5"
  }
}

apply plugin: "com.eitan.course"

Learn how to apply plugins to subprojects