Search Gradle plugins

lv.brain.gradle.xmlbeans

Owner: brain.lv

Plugin supposed to simplify use of xmlbeans to generate custom java objects based on xsd schema

https://github.com/brain-lv/xmlbeans-plugin

Sources: https://github.com/brain-lv/xmlbeans-plugin.git

Version 1.5.1 (latest)

Created 22 September 2023.

Plugin supposed to simplify use of xmlbeans to generate custom java objects based on xsd schema

Add this plugin to your build using the plugins DSL:

plugins {
  id("lv.brain.gradle.xmlbeans") version "1.5.1"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("lv.brain.gradle.xmlbeans:lv.brain.gradle.xmlbeans.gradle.plugin:1.5.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("lv.brain.gradle.xmlbeans")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("lv.brain.gradle.xmlbeans:lv.brain.gradle.xmlbeans.gradle.plugin:1.5.1")
      }
    }
    
    apply(plugin = "lv.brain.gradle.xmlbeans")
  • Applying plugins to all subprojects .