org.openrepose.gradle.plugins.jaxb
Owner:
Stabby the Narwhal
Gradle plugin to ease development with XSD's using the jaxb ant task
https://github.com/rackerlabs/gradle-jaxb-plugin
Version 2.5.0 (latest)
Created 29 March 2018.
Gradle plugin to ease development with XSD's using the jaxb ant task
Using the plugins DSL:
plugins {
id("org.openrepose.gradle.plugins.jaxb") version "2.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.openrepose:gradle-jaxb-plugin:2.5.0")
}
}
apply(plugin = "org.openrepose.gradle.plugins.jaxb")
Using the plugins DSL:
plugins {
id "org.openrepose.gradle.plugins.jaxb" version "2.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.openrepose:gradle-jaxb-plugin:2.5.0"
}
}
apply plugin: "org.openrepose.gradle.plugins.jaxb"