Search Gradle plugins

Version 1.0.13 (latest)

1.0.13

Created 15 March 2024.

The XSD Builder Gradle plugin lets you generate Apache XMLBeans bindings from XML Schema (XSD) files.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.liferay.xsd.builder") version "1.0.13"
}

See also:

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