com.github.eerohele.saxon-gradle
Owner: Eero Helenius
A Gradle plugin for running Saxon
https://github.com/eerohele/saxon-gradle
Sources: https://github.com/eerohele/saxon-gradle.git
Version 0.9.0-beta4 (latest)
0.9.0-beta4
Created 28 August 2021.
A Gradle plugin for running XSLT transformations with Saxon
Using the plugins DSL:
plugins {
id("com.github.eerohele.saxon-gradle") version "0.9.0-beta4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.eerohele:saxon-gradle:0.9.0-beta4")
}
}
apply(plugin = "com.github.eerohele.saxon-gradle")
Using the plugins DSL:
plugins {
id "com.github.eerohele.saxon-gradle" version "0.9.0-beta4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.eerohele:saxon-gradle:0.9.0-beta4"
}
}
apply plugin: "com.github.eerohele.saxon-gradle"