com.github.gradlecommunity.jaxb2
Owner:
GradleUp plugins
Plugin for generating Java sources from XML schemas files.
https://github.com/GradleUp/jaxb2
Sources: https://github.com/gradle-community/jaxb2
Version 3.1.0 (latest)
Created 09 February 2021.
Plugin for generating Java sources from XML schemas files.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.github.gradlecommunity.jaxb2") version "3.1.0"
}
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.gradlecommunity.jaxb2:com.github.gradlecommunity.jaxb2.gradle.plugin:3.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.github.gradlecommunity.jaxb2") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.gradlecommunity.jaxb2:com.github.gradlecommunity.jaxb2.gradle.plugin:3.1.0") } } apply(plugin = "com.github.gradlecommunity.jaxb2")
- Applying plugins to all subprojects .