The maven-jaxb2-plugin tag has no wiki summary.
4
votes
2answers
484 views
Is there a way to deal with duplicate element definitions across multiple .xsd files in JAXB?
I have dozens and dozens .xsd files that I want to auto-generate code for. A couple of the files have duplicate names that clash when I try to generate all of them at the same time.
I am focusing ...
2
votes
4answers
438 views
Insert custom setter in maven-jaxb2-plugin
I'm using the org.jvnet.jaxb2.maven2:maven-jaxb2-plugin to create POJOs from XSD schema files.
Now I want to insert something like a custom setter. It should trim all Strings and should remove ...
2
votes
3answers
547 views
How to specify the JAXB version in maven-jaxb2-plugin?
I need to use the latest version jaxb: 2.2.4-1, but maven or maven-jaxb2-plugin seems to pick up the one from the JDK.
I tried specifying the version like this:
<configuration>
...
2
votes
1answer
624 views
SAXParseException: maven jaxb2 plugin seems not to import schemas correctly
during generation of source from XSD schemas I get a SAXParseException (see below). A schema "gws-ctsa-myapp.xsd" is importing two basic components "gws-services-types.xsd" and "gws-ctsa.xsd". The ...
2
votes
1answer
216 views
What Maven2 plugins are available for JAXB2?
I'd like to generate Java source code from an XML Schema file using JAXB2 via a Maven2 plugin (as in this blog post).
There seem to be 2 Maven plugins for JAXB: The "Maven 2 JAXB 2.x Plugin" ...
1
vote
1answer
37 views
How can I get JAXB2 to emit CamelCase bindings?
I'm generating Java classes from a WSDL using the jaxws-maven-plugin's wsimport goal. Out of the box, this generates hideous classes and methods from the XML schema; e.g., a class called MYOBJECT from ...
1
vote
1answer
80 views
Generating JAXB class from XSDs with similar attribute names
I use maven-jaxb2-plugin to generate jaxb annotated classes from xsd. I have many xsd files like those:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema ...
1
vote
2answers
140 views
Create a common xsd generated class to be used by other packages
I am trying to use the same generated class but in separate packages. So the structure should look something like this:
com.test.common
-commonType.java
com.test.A
-objectA.java
com.test.B
...
1
vote
1answer
192 views
Running custom JAXB2 plugins using Maven JAXB 2.x Plugin
I would like to generate JAXB Java classes using the Maven JAXB 2.x plugin http://static.highsource.org/mjiip/maven-jaxb2-plugin/generate-mojo.html
To declare the custom JAXB plugins I would execute ...
1
vote
3answers
222 views
Why JAXB (jaxb2-maven-plugin) skips this attribute?
jaxb2-maven-plugin 1.3 skips an attribute from an object. I cannot modify the XSD. In the XSD (fragment):
<?xml version="1.0" encoding="ISO-8859-1" ?>
<xs:schema ...
1
vote
1answer
121 views
Why JAXB maps the java object to the complex type instead of the element?
I have this XSD: (fragment)
<xs:complexType name="complexA">
<xs:sequence>
<xs:element ref="abstractA" minOccurs="0"/>
</xs:sequence>
...
1
vote
1answer
185 views
JAXB Binding - defined the return type of List<T> methods
I have this schema and i'm using JAXB to generate java stub files.
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
...
1
vote
0answers
172 views
SAXParseException Using Maven-JAXB2 0.7.5 Plugin, Only On Maven 3
I seem to be having issues with the maven-jaxb2-plugin (Version 0.7.5) when using Maven 3. The issue doesn't occur when using Maven 2.2.x, and it only became an issue when I upgraded to Maven 3.
...
1
vote
2answers
486 views
How to recursively parse xsd files to generate a list of included schemas for incremental build in Maven?
I have a Maven project that uses the jaxb2-maven-plugin to compile some xsd files. It uses the staleFile to determine whether or not any of the referenced schemaFiles have been changed. ...
0
votes
0answers
13 views
Spring Rest unable to support JAXB @XmlMixed
Currently using JAXB generated classes from an existing xsd. The output creates the a file with the annotation @XmlMixed that causes problems when used with the ...
0
votes
1answer
12 views
how do I use the URL option with the maven-jaxb2-plugin
According to the user guide, I should be able to use <url></url> in the configuration, but that syntax is not listed in the Maven-generated project documentation Can anyone give me a ...
0
votes
1answer
42 views
Maven Jaxb2 plugin errors
Trying to build a mavenized project with NetBeans fails:
Failed to execute goal org.jvnet.jaxb2.maven2:maven-jaxb2-plugin:0.7.5:generate (default) on project MyProject:
Execution default of goal ...
0
votes
0answers
50 views
maven-jaxb-plugin
I am using this plugin to generate java source from XSD.It is generating fine.
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
...
0
votes
0answers
27 views
How to change artifact resolution for compile scope in maven?
I'm trying to use the jaxb2-maven-plugin to generate an XML-schema from a java class during my build with maven.
The documentation of the plug-in says it requires artifact resolution in scope ...
0
votes
0answers
46 views
XML schema from .java files
I want to generate xml schema corresponding to my java classes. I want it to be done by specifying the package of source files and it has to be done before the compile phase of maven life cycle. I ...
0
votes
2answers
248 views
Howto generate classes from WSDL and XSD with gradle, equivalent to maven-jaxb2-plugin
I want to switch my Maven2 build file to gradle.
Generating the java classes from WSDL + XSDs with gradle seems to be not documented further there is no gradle plugin for this.
I use the following ...
0
votes
1answer
57 views
File Not Found : maven-jaxb2-plugin
i am trying to compile schema from an artifact(dependency) using jaxb2 plugin , i followed the topic: Compiling a schema from a Maven artifact in
...
0
votes
0answers
171 views
JAXB2 Maven Plugin cannot generate annotations or inject-code
I currently have an ant task that does a great job of generating my domain objects from xsd and xjb binding files. It creates the annotations and injects code where I need it based upon a custom ...
0
votes
1answer
365 views
maven-jaxb2-plugin isn't generating any output
I'm new to Maven, and am trying to use it to generate the Java classes from my XSD.
My xsd file is in src/main/resources/xsd
In dependencies I have this, but I don't think I need it as I'm using ...
0
votes
1answer
159 views
Jaxb generation of value constructor for a single class
I have a collection of XSD's that I am the maven-jaxb2-plugin to generate the java classes. I have 1 class, that I need a value constructor on, however I do not want value constructors for any of the ...
0
votes
1answer
167 views
Skip the Generated on… in Java files using jaxb2 maven plugin
I'd like to get the maven-jaxb2-plugin to do not write the 'disclaimer':
This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, ...
0
votes
1answer
258 views
maven jaxb2 plugin - can I avoid jwsdp dependencies
I have a maven build which auto-generates a set JAXB java source files. The basic config is
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
...
0
votes
1answer
240 views
duplicate element not is detected with maven jaxb/jaxb2 plugin
I'm using maven-jaxb-plugin and maven-jaxb2-plugin to compile a xsd file that has two elements with same name, but the code compiles without throws an error. The generated class don't have the ...
0
votes
0answers
996 views
How do I import xsd files containing JAXB properties?
I am trying to import one XML Schema into another xsd file. However, xjc seems to fail during import when it finds inline JAXB property customizations. The error is, ...
0
votes
1answer
530 views
jaxb episodic compilation with maven
I am trying to execute the maven-jaxb2-plugin-sample-episode-0.7.4 (explained here and with a download available) to try separate schema compilation. Despite it compiles the first schema (A), it fails ...