com.github.seanrl.jaxb
Owner: Sean Craft
Gradle plugin to ease development with XSD's using the jaxb ant task
https://github.com/seanrl/gradle-jaxb-plugin
Sources: https://github.com/seanrl/gradle-jaxb-plugin
Version 2.5.2
2.5.2
Created 14 March 2023.
Gradle plugin to ease development with XSD's using the jaxb ant task
Using the plugins DSL:
plugins {
id("com.github.seanrl.jaxb") version "2.5.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.seanrl:gradle-jaxb-plugin:2.5.2")
}
}
apply(plugin = "com.github.seanrl.jaxb")
Using the plugins DSL:
plugins {
id "com.github.seanrl.jaxb" version "2.5.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.seanrl:gradle-jaxb-plugin:2.5.2"
}
}
apply plugin: "com.github.seanrl.jaxb"