org.unbroken-dome.xjc
Owner:
Till Krullmann
A plugin that integrates the XJC binding compiler into a Gradle build.
https://github.com/unbroken-dome/gradle-xjc-plugin
Sources: https://github.com/unbroken-dome/gradle-xjc-plugin.git
Version 2.0.0 (latest)
Created 23 September 2020.
A plugin that integrates the XJC binding compiler into a Gradle build.
Using the plugins DSL:
plugins {
id("org.unbroken-dome.xjc") version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.unbroken-dome.gradle-plugins:gradle-xjc-plugin:2.0.0")
}
}
apply(plugin = "org.unbroken-dome.xjc")
Using the plugins DSL:
plugins {
id "org.unbroken-dome.xjc" version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.unbroken-dome.gradle-plugins:gradle-xjc-plugin:2.0.0"
}
}
apply plugin: "org.unbroken-dome.xjc"