hisrc-higherjaxb-w3c-xmlschema-v1_0
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.patrodyne.jvnet</groupId>
<artifactId>hisrc-higherjaxb-w3c-xmlschema-v1_0</artifactId>
<version>3.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.patrodyne.jvnet</groupId>
<artifactId>hisrc-higherjaxb-w3c</artifactId>
<version>3.0.0</version>
</parent>
<artifactId>hisrc-higherjaxb-w3c-xmlschema-v1_0</artifactId>
<packaging>jar</packaging>
<name>HiSrc HigherJAXB W3C XMLSchema 1.0</name>
<properties>
<root.basedir>${basedir}/../..</root.basedir>
</properties>
<dependencies>
<!-- JAXB Runtime -->
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
</dependency>
<!-- HiSrc HigherJAXB W3C Schemas -->
<dependency>
<groupId>org.patrodyne.jvnet</groupId>
<artifactId>hisrc-higherjaxb-w3c-schemas</artifactId>
</dependency>
<!-- HiSrc HigherJAXB Testing -->
<dependency>
<groupId>org.patrodyne.jvnet</groupId>
<artifactId>hisrc-higherjaxb-maven-plugin-testing</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.github.threeten-jaxb</groupId>
<artifactId>threeten-jaxb-core</artifactId>
</dependency>
<!-- HiSrc BasicJAXB Testing -->
<dependency>
<groupId>org.patrodyne.jvnet</groupId>
<artifactId>hisrc-basicjaxb-plugins</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.patrodyne.jvnet</groupId>
<artifactId>hisrc-basicjaxb-runtime</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.patrodyne.jvnet</groupId>
<artifactId>hisrc-basicjaxb-testing</artifactId>
<scope>test</scope>
</dependency>
<!-- SLF4J Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
<!-- Need HigherjaxbMojo for RunXXXPluginTest -->
<dependency>
<groupId>org.patrodyne.jvnet</groupId>
<artifactId>hisrc-higherjaxb-maven-plugin</artifactId>
<scope>test</scope>
</dependency>
<!-- Maven JSR-330 Dependency Injection for RunXXXPluginTest -->
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<scope>test</scope>
</dependency>
<!-- Maven dependencies for RunXXXPluginTest -->
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver-connector-basic</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver-transport-file</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.resolver</groupId>
<artifactId>maven-resolver-transport-http</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<defaultGoal>install</defaultGoal>
<plugins>
<!-- mvn hisrc-higherjaxb:help -Ddetail=true -->
<!-- mvn hisrc-higherjaxb:generate -->
<!-- mvn hisrc-higherjaxb:generate@default -->
<!-- mvn hisrc-higherjaxb:generate@test -->
<plugin>
<groupId>org.patrodyne.jvnet</groupId>
<artifactId>hisrc-higherjaxb-maven-plugin</artifactId>
<version>${project.version}</version>
<executions>
<execution>
<id>default</id>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<debug>false</debug>
<verbose>true</verbose>
<extension>true</extension>
<strict>false</strict>
<catalogFeaturePrefer>public</catalogFeaturePrefer>
<catalogFeatureDefer>true</catalogFeatureDefer>
<catalogFeatureResolve>continue</catalogFeatureResolve>
<catalog>src/main/resources/catalog.xml</catalog>
<catalogResolver>org.jvnet.higherjaxb.mojo.resolver.tools.ViaCatalogResolver</catalogResolver>
<bindingDirectory>${basedir}/src/main/resources</bindingDirectory>
<bindingIncludes>*.xjb</bindingIncludes>
<!--
<schemaDirectory>${basedir}/src/main/resources</schemaDirectory>
<schemaIncludes>*.xsd</schemaIncludes>
-->
<schemas>
<schema>
<!--
<url>http://www.w3.org/2001/XMLSchema.xsd</url>
-->
<url>via:maven:org.patrodyne.jvnet:hisrc-higherjaxb-w3c-schemas:jar::!/w3c/2001/XMLSchema.xsd</url>
</schema>
</schemas>
<args>
<arg>-Xsimplify</arg>
<arg>-XvalueConstructor</arg>
<arg>-XfluentAPI</arg>
<arg>-XsimpleHashCode</arg>
<arg>-XsimpleEquals</arg>
<arg>-XsimpleToString</arg>
<arg>-XsimpleToString-showFieldNames=true</arg>
<arg>-XsimpleToString-showChildItems=false</arg>
<arg>-XsimpleToString-fullClassName=false</arg>
</args>
</configuration>
</execution>
<execution>
<id>test</id>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<debug>false</debug>
<verbose>true</verbose>
<strict>false</strict>
<bindingDirectory>${basedir}/src/test/resources</bindingDirectory>
<bindingIncludes>*.xjb</bindingIncludes>
<schemaDirectory>${basedir}/src/test/resources</schemaDirectory>
<schemaIncludes>*.xsd</schemaIncludes>
<generateDirectory>${project.build.directory}/generated-test-sources/xjc</generateDirectory>
<episodeFile>${project.build.directory}/generated-test-sources/xjc/META-INF/sun-jaxb-test.episode</episodeFile>
<addCompileSourceRoot>false</addCompileSourceRoot>
<addTestCompileSourceRoot>true</addTestCompileSourceRoot>
<args>
<arg>-XfixedValue</arg>
<arg>-XfluentAPI</arg>
<arg>-XsimpleHashCode</arg>
<arg>-XsimpleEquals</arg>
<arg>-XsimpleToString</arg>
<arg>-XsimpleToString-showFieldNames=true</arg>
<arg>-XsimpleToString-showChildItems=false</arg>
<arg>-XsimpleToString-fullClassName=false</arg>
</args>
</configuration>
</execution>
</executions>
<configuration>
<noFileHeader>true</noFileHeader>
<extension>true</extension>
<plugins>
<plugin>
<groupId>org.patrodyne.jvnet</groupId>
<artifactId>hisrc-basicjaxb-plugins</artifactId>
<version>${project.version}</version>
</plugin>
</plugins>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*Test.java</include>
</includes>
<excludes>
<!-- Normally, these tests are run from the IDE. -->
<exclude>**/Run*Test.java</exclude>
</excludes>
<forkCount>1</forkCount>
<reuseForks>true</reuseForks>
</configuration>
</plugin>
</plugins>
</build>
</project>