Search Gradle plugins

Version 0.10.5 (latest)

0.10.5

Created 18 May 2023.

A Gradle plugin for doing RELAX NG translation

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.nwalsh.gradle.relaxng.translate") version "0.10.5"
}

See also:

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