org.hibernate.build.xjc
Owner: Hibernate.org
JAXB binding model generation using the XJC tool
https://github.com/hibernate/gradle-xjc-plugin
Sources: https://github.com/sebersole/gradle-maven-publish-auth
Version 2.2.0 (latest)
2.2.0
Created 19 July 2021.
JAXB binding model generation using the XJC tool
Using the plugins DSL:
plugins {
id("org.hibernate.build.xjc") version "2.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.hibernate.build.gradle:gradle-xjc-plugin:2.2.0")
}
}
apply(plugin = "org.hibernate.build.xjc")
Using the plugins DSL:
plugins {
id "org.hibernate.build.xjc" version "2.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.hibernate.build.gradle:gradle-xjc-plugin:2.2.0"
}
}
apply plugin: "org.hibernate.build.xjc"