org.myire.munge
所有者: Peter Franzen
使用XSL样式表和FreeMarker模板转换XML文件
https://github.com/handmadecode/munge
来源: https://github.com/handmadecode/munge
使用plugins DSL
plugins {
id("org.myire.munge") version "1.1"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.myire:munge:1.1")
}
}
apply(plugin = "org.myire.munge")
使用plugins DSL
plugins {
id "org.myire.munge" version "1.1"
}
使用旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.myire:munge:1.1"
}
}
apply plugin: "org.myire.munge"