org.myire.munge
Owner: Peter Franzen
Transform XML files with XSL stylesheets and FreeMarker templates
https://github.com/handmadecode/munge
Sources: https://github.com/handmadecode/munge
Version 1.1 (latest)
1.1
Created 24 October 2021.
Transform XML files with XSL stylesheets and FreeMarker templates
Using the plugins DSL:
plugins {
id("org.myire.munge") version "1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.myire:munge:1.1")
}
}
apply(plugin = "org.myire.munge")
Using the plugins DSL:
plugins {
id "org.myire.munge" version "1.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.myire:munge:1.1"
}
}
apply plugin: "org.myire.munge"