Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

XsdToJava generated class files #219

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
74 changes: 53 additions & 21 deletions ipp-v3-java-data/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
<!-- end of maven shade plugin -->

<!-- commented to avoid regeneration of entities, as the same is not required everytime -->
<!--<plugin>
<plugin>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This plugin part has to be commented

<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.5</version>
Expand All @@ -87,7 +87,39 @@
</fileset>
</filesets>
</configuration>
</plugin>-->
</plugin>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>fmsdata</id>
<goals>
<goal>xjc</goal>
</goals>
<configuration>
<extension>true</extension>
<sources>
<source>${project.basedir}/src/main/xsd/Finance.xsd</source>
<source>${project.basedir}/src/main/xsd/IntuitBaseTypes.xsd</source>
<source>${project.basedir}/src/main/xsd/IntuitNamesTypes.xsd</source>
<source>${project.basedir}/src/main/xsd/IntuitRestServiceDef.xsd</source>
<source>${project.basedir}/src/main/xsd/Report.xsd</source>
<source>${project.basedir}/src/main/xsd/SalesTax.xsd</source>
</sources>
<xjbSources>
<xjbSource>${project.basedir}/src/main/xsd/bindings.xjb</xjbSource>
<xjbSource>${project.basedir}/src/main/xsd/Finance.xjb</xjbSource>
</xjbSources>
<packageName>com.intuit.ipp.data</packageName>
<outputDirectory>${project.basedir}/src/main/java</outputDirectory>
<clearOutputDir>false</clearOutputDir>
</configuration>
</execution>
</executions>
</plugin>
<!--<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
Expand Down Expand Up @@ -182,24 +214,24 @@
</build>
</profile>
</profiles>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jvnet.staxex</groupId>
<artifactId>stax-ex</artifactId>
<version>1.8</version>
</dependency>
<dependency>
<groupId>com.sun.xml.fastinfoset</groupId>
<artifactId>FastInfoset</artifactId>
<version>1.2.15</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.9</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.jvnet.staxex</groupId>
<artifactId>stax-ex</artifactId>
<version>1.8</version>
</dependency>
<dependency>
<groupId>com.sun.xml.fastinfoset</groupId>
<artifactId>FastInfoset</artifactId>
<version>1.2.15</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.9</version>
</dependency>
</dependencies>
</dependencyManagement>

</project>
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2023.02.07 at 12:34:12 PM IST
// Generated on: 2024.06.18 at 04:20:25 PM IST
//


Expand All @@ -17,7 +17,6 @@
* <p>Java class for APCreditCardOperationEnum.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <p>
* <pre>
* &lt;simpleType name="APCreditCardOperationEnum"&gt;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
Expand Down
Loading