org.opentorah.docbook
Owner: dub
Gradle DocBook Plugin
https://github.com/opentorah/opentorah/tree/master/docbook
Sources: https://github.com/opentorah/opentorah.git
Using the plugins DSL:
plugins {
id("org.opentorah.docbook") version "0.10.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.opentorah:opentorah-docbook:0.10.6")
}
}
apply(plugin = "org.opentorah.docbook")
Using the plugins DSL:
plugins {
id "org.opentorah.docbook" version "0.10.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.opentorah:opentorah-docbook:0.10.6"
}
}
apply plugin: "org.opentorah.docbook"