Search Gradle plugins

Version 0.10.7 (latest)

0.10.7

Created 26 June 2023.

A Gradle plugin for running XSLT transformations with Saxon

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.nwalsh.gradle.saxon.saxon-gradle") version "0.10.7"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.nwalsh.gradle.saxon:saxon-gradle:0.10.7")
      }
    }
    
    apply(plugin = "com.nwalsh.gradle.saxon.saxon-gradle")
  • Applying plugins to all subprojects .