Search Gradle plugins

Version 1.1 (latest)

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"

Learn how to apply plugins to subprojects