jaxb2-maven-plugin
jaxb2-maven-plugin copied to clipboard
JAXB2 Maven Plugin
The JDK's schemagen tool itself is able to process Java files found in paths with blanks, but the schemagen mojo fails to do so.
All Classes are generated without verbose eq. true, but with verbose eq. true the plugin throws this error. Errormessage: `[INFO] null [-1,-1] org.xml.sax.SAXParseException: generating code at com.sun.tools.xjc.ErrorReceiver.debug (ErrorReceiver.java:110) at com.sun.tools.xjc.Driver.run...
If the path to the xsd file contains any whitespaces, the attached [exception.txt](https://github.com/mojohaus/jaxb2-maven-plugin/files/4334896/exception.txt) is generated. Please note that it tries to read the schema from `/home//git/Shared_FS/Shared FS/home//git/Shared_FS/Shared FS/sharedfs.client/sharedfs.client.connector/target/xsds/requests.xsd` while the...
I am working with an XSD where I imported the standard `ds:Signature` element. The `xjc `goal **works fine on Unix but it does not work on Windows**. The version I...
I simple call _mvn test_ and unit tests failed with this result: >Results : > >Failed tests: > FileSystemUtilitiesTest.validateRelativizingPaths:455 Given parent dir [], expected [project/backend/foobar/my-schema.xsd] from [/project/backend/foobar/my-schema.xsd] but found: /project/backend/foobar/my-schema.xsd...
I have a local .xsd file which imports an .xsd file from a remote url > I'm attempting to exclude that url w/o modifying the .xsd I've tried variations of...
My issues is similar to #115 but that had no resolution. ``` ROOT --myProj --pom.xml --myProj-commons --pom.xml myProj-schemas --pom.xml --src --main --xsd --something --xsd1.xsd --xsd2.xsd --xjbs --some-binding.xjb ``` During SchemaGen...
I'm trying to migrate from `maven-jaxb2-plugin` but cannot seem to replicate the functionality of generating Java classes from a remote WSDL. The way I'm trying to do it is: ```...
Our fix for https://github.com/mojohaus/jaxb2-maven-plugin/issues/141
Adding a new possible way of configuring schemaSourceExcludeFilters, example of usage: ``` ... ^.*MyExcludedClass.*$ ... ``` or exclude everything _but_ files matching "MyExcludedClass"... ``` ... ^((?!MyExcludedClass).)*$ ... ```