Search Gradle plugins

Version 3.0.0.8 (latest)

Created 07 September 2023.

A Gradle plugin that provides some conventions when use AsciidoctorJPlugin

Using the plugins DSL:

plugins {
  id("io.github.jcohy.gradle.asciidoctor-conventions") version "3.0.0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.jcohy:jcohy-asciidoctor:3.0.0.8")
  }
}

apply(plugin = "io.github.jcohy.gradle.asciidoctor-conventions")

Using the plugins DSL:

plugins {
  id "io.github.jcohy.gradle.asciidoctor-conventions" version "3.0.0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.jcohy:jcohy-asciidoctor:3.0.0.8"
  }
}

apply plugin: "io.github.jcohy.gradle.asciidoctor-conventions"

Learn how to apply plugins to subprojects