com.github.eerohele.dita-ot-gradle
Owner: Eero Helenius
A Gradle plugin for running DITA Open Toolkit
https://github.com/eerohele/dita-ot-gradle
Sources: https://github.com/eerohele/dita-ot-gradle.git
Version 0.6.0-beta6
0.6.0-beta6
Created 11 November 2019.
A Gradle plugin for running DITA Open Toolkit
Using the plugins DSL:
plugins {
id("com.github.eerohele.dita-ot-gradle") version "0.6.0-beta6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.eerohele:dita-ot-gradle:0.6.0-beta6")
}
}
apply(plugin = "com.github.eerohele.dita-ot-gradle")
Using the plugins DSL:
plugins {
id "com.github.eerohele.dita-ot-gradle" version "0.6.0-beta6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.eerohele:dita-ot-gradle:0.6.0-beta6"
}
}
apply plugin: "com.github.eerohele.dita-ot-gradle"