-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
176 changed files
with
6,271 additions
and
1,628 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
# IntelliJ IDEA | ||
.idea/ | ||
*.iml | ||
out/ | ||
|
||
# Gradle | ||
.gradle/ | ||
build/ | ||
.idea/ | ||
**/*.iml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
ifdef::env-github[] | ||
:tip-caption: :bulb: | ||
:note-caption: :information_source: | ||
:important-caption: :heavy_exclamation_mark: | ||
:caution-caption: :fire: | ||
:warning-caption: :warning: | ||
endif::[] | ||
|
||
= Gradle XJC Plugin | ||
|
||
Invokes the `xjc` binding compiler from a Gradle build. | ||
|
||
|
||
== Features | ||
|
||
- Automatically enable XJC code generation for each source set in your project | ||
- support different versions of XJC through classpath isolation | ||
- producing and consuming episodes | ||
- catalogs with `maven:` and `classpath:` URI resolution (similar to maven-jaxb2-plugin) | ||
|
||
|
||
== Requirements | ||
|
||
- Gradle 5.6 or higher | ||
- JDK 1.8 or higher (when running Gradle) | ||
|
||
|
||
== Quick Start | ||
|
||
Apply the `org.unbroken-dome.xjc` plugin to your Gradle build script and add an appropriate | ||
dependency on the JAXB API: | ||
|
||
[source,kotlin] | ||
.build.gradle(.kts) | ||
---- | ||
plugins { | ||
id("org.unbroken-dome.xjc") version "2.0.0" | ||
} | ||
dependencies { | ||
implementation("javax.xml.bind:jaxb-api:2.3.0") | ||
} | ||
---- | ||
|
||
Put your schemas (`.xsd`), binding customization files (`.xjb`) and catalogs (`.cat`) | ||
into `src/main/schema`. | ||
|
||
That's it! The plugin will automatically invoke XJC to generate code from your schemas and include | ||
it the `main` Java compilation. | ||
|
||
|
||
== Further Documentation | ||
|
||
* https://unbroken-dome.github.io/projects/gradle-xjc-plugin/[User Manual] | ||
* https://unbroken-dome.github.io/projects/gradle-xjc-plugin/dokka/gradle-xjc-plugin/[API/DSL Documentation] |
Oops, something went wrong.