com.github.eerohele.dita-ot-gradle
所有者: Eero Helenius
DITA Open Toolkit的Gradle插件
https://github.com/eerohele/dita-ot-gradle
源码: https://github.com/eerohele/dita-ot-gradle.git
使用插件DSL
plugins {
id("com.github.eerohele.dita-ot-gradle") version "0.7.1"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.eerohele:dita-ot-gradle:0.7.1")
}
}
apply(plugin = "com.github.eerohele.dita-ot-gradle")
使用插件DSL
plugins {
id "com.github.eerohele.dita-ot-gradle" version "0.7.1"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.eerohele:dita-ot-gradle:0.7.1"
}
}
apply plugin: "com.github.eerohele.dita-ot-gradle"