com.github.edeandrea.xjc-generation
Owner: Eric Deandrea
A Plugin for generating JAXB Java sources using the XJC compiler
http://github.com/edeandrea/xjc-generation-gradle-plugin
Sources: http://github.com/edeandrea/xjc-generation-gradle-plugin
Version 1.6 (latest)
Created 07 January 2021.
A Gradle Plugin for generating JAXB Java sources using the XJC compiler
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.edeandrea.xjc-generation") version "1.6"
}
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("com.github.edeandrea.xjc-generation:com.github.edeandrea.xjc-generation.gradle.plugin:1.6") }
It can then be applied in the precompiled script plugin:plugins { id("com.github.edeandrea.xjc-generation") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.edeandrea.xjc-generation:com.github.edeandrea.xjc-generation.gradle.plugin:1.6") } } apply(plugin = "com.github.edeandrea.xjc-generation")
- Applying plugins to all subprojects .