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)
1.6
Created 07 January 2021.
A Gradle Plugin for generating JAXB Java sources using the XJC compiler
Using the plugins DSL:
plugins {
id("com.github.edeandrea.xjc-generation") version "1.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.edeandrea:xjc-generation-gradle-plugin:1.6")
}
}
apply(plugin = "com.github.edeandrea.xjc-generation")
Using the plugins DSL:
plugins {
id "com.github.edeandrea.xjc-generation" version "1.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.edeandrea:xjc-generation-gradle-plugin:1.6"
}
}
apply plugin: "com.github.edeandrea.xjc-generation"