com.github.eerohele.saxon-gradle
拥有者: Eero Helenius
运行Saxon的Gradle插件
https://github.com/eerohele/saxon-gradle
来源: https://github.com/eerohele/saxon-gradle.git
使用 plugins DSL
plugins {
id("com.github.eerohele.saxon-gradle") version "0.9.0-beta4"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.eerohele:saxon-gradle:0.9.0-beta4")
}
}
apply(plugin = "com.github.eerohele.saxon-gradle")
使用 plugins DSL
plugins {
id "com.github.eerohele.saxon-gradle" version "0.9.0-beta4"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.eerohele:saxon-gradle:0.9.0-beta4"
}
}
apply plugin: "com.github.eerohele.saxon-gradle"