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.4

Created 20 November 2017.

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.4"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.eitan.course"

Learn how to apply plugins to subprojects