jaxb2-maven-plugin
jaxb2-maven-plugin copied to clipboard
JAXB2 Maven Plugin
## Env Name | Version --- | --- Maven | 3.3.9 Java | Oracle JDK 8_181 jaxb2-maven-plugin | 2.4 ## Issue The problem comes from our Build-Server where the job-name...
Hi I am running this configuration ``` org.codehaus.mojo jaxb2-maven-plugin 2.4 xjc src-generated com.scort.logconfigurator.jaxb src/main/xsd logmetadata.xsd true true true ``` with those src/main/xsd files [log4j.xsd.txt](https://github.com/mojohaus/jaxb2-maven-plugin/files/2658039/log4j.xsd.txt) [log4j1.xsd.txt](https://github.com/mojohaus/jaxb2-maven-plugin/files/2658040/log4j1.xsd.txt) [logmetadata.xsd.txt](https://github.com/mojohaus/jaxb2-maven-plugin/files/2658041/logmetadata.xsd.txt) and got this exception...
Is it possible to make schemagen work with Lombok annotations? It seems like the compilation is done without annotation processing so any usage of Lombok-generated getters or setters in the...
We have found few issues in jaxb2-maven-plugin with both latest version 2.5.0 and 2.4 that makes it unable to find XSD files in some situations. We are downgrading to 2.3.1...
Several errors in unit tests that only occur with Cobertura during site build. See Travis output for exemple: https://travis-ci.org/mojohaus/jaxb2-maven-plugin/builds/206997596 Strangely not all builds are marked as bad in Travis although...
Java Regexps differ in syntax from the expressions used in ANT (earlier) and the Maven shared components (nowadays). This has proved difficult for users; switch to the Maven shared component...
Plugin: jaxb2-maven-plugin Version: 2.3.1 Scenario: I have a Java class with JAXB annotations and JavaDocs on fields. JAXB is configured to generate schema based on FIELDS. Expected result: XSD schema...
When a working project is compiled as a module during the parent build, the path to the schema files seems to be calculated incorrectly. `/root/path/to/child/src/main/xsd/Schema.xsd` becomes `/root/path/to/parent/root/path/to/child/src/main/xsd/Schema.xsd` And the build...
Hi, I choosed custom output directory for my generated objects which is: ${basedir}/src/main/java/jaxb/model but all objects were generated to path: /src/main/java/jaxb/model/generated but all the classes contains `package generated`; line so...
Hi I am trying to use the jaxb2-value-constructor plugin inside jaxb2-maven-plugin for xjc goal, but cannot get the constructors created. Here is example of my configuration pom.xml Any suggestions are...