io.github.jcohy.gradle.asciidoctor-conventions
Owner: Jcohy
A Gradle plugin that provides some conventions when use AsciidoctorJPlugin
https://github.com/jcohy/jcohy-gradle-plugins
Sources: https://github.com/jcohy/jcohy-gradle-plugins
Version 3.2.2.2 (latest)
3.2.2.2
Created 11 May 2024.
A Gradle plugin that provides some conventions when use AsciidoctorJPlugin
Using the plugins DSL:
plugins {
id("io.github.jcohy.gradle.asciidoctor-conventions") version "3.2.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.jcohy:jcohy-asciidoctor:3.2.2.2")
}
}
apply(plugin = "io.github.jcohy.gradle.asciidoctor-conventions")
Using the plugins DSL:
plugins {
id "io.github.jcohy.gradle.asciidoctor-conventions" version "3.2.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.jcohy:jcohy-asciidoctor:3.2.2.2"
}
}
apply plugin: "io.github.jcohy.gradle.asciidoctor-conventions"