en16931-edifact-xml
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.helger.en16931</groupId> <artifactId>en16931-edifact-xml</artifactId> <version>2.0.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (C) 2016-2020 CEN TC/434 for EN 16931 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.helger.en16931</groupId> <artifactId>en16931-parent-pom</artifactId> <version>2.0.4</version> </parent> <artifactId>en16931-edifact-xml</artifactId> <packaging>bundle</packaging> <name>en16931-edifact-xml</name> <description>JAXB generated domain objects for the special EDIFACT ISO 20625 XML dialect used in EN 16931</description> <url>https://github.com/CenPc434/java-tools/en16931-edifact-xml</url> <inceptionYear>2017</inceptionYear> <licenses> <license> <name>Apache 2</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <dependencies> <dependency> <groupId>com.helger</groupId> <artifactId>ph-jaxb-pom</artifactId> <type>pom</type> </dependency> <dependency> <groupId>com.helger.commons</groupId> <artifactId>ph-commons</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Automatic-Module-Name>eu.cen.en16931.edifact.invoicd14b.iso20625</Automatic-Module-Name> <Export-Package>eu.cen.en16931.edifact.invoicd14b.iso20625.*</Export-Package> <Import-Package>!javax.annotation.*,*</Import-Package> </instructions> </configuration> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <excludes> <exclude>**/LICENSE</exclude> <exclude>**/NOTICE</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.jvnet.jaxb2.maven2</groupId> <artifactId>maven-jaxb2-plugin</artifactId> <version>0.14.0</version> <executions> <execution> <goals> <goal>generate</goal> </goals> </execution> </executions> <configuration> <bindingDirectory>${basedir}/src/main/jaxb</bindingDirectory> <schemaDirectory>${basedir}/src/main/resources/schemas/</schemaDirectory> <extension>true</extension> <strict>false</strict> <args> <arg>-no-header</arg> <arg>-Xph-default-locale</arg> <arg>en_US</arg> <arg>-Xph-annotate</arg> <arg>-Xph-fields-private</arg> <arg>-Xph-code-quality</arg> <arg>-Xph-implements</arg> <arg>java.io.Serializable</arg> <arg>-Xph-equalshashcode</arg> <arg>-Xph-tostring</arg> <arg>-Xph-list-extension</arg> <arg>-Xph-csu</arg> <arg>-Xph-cloneable2</arg> </args> </configuration> <dependencies> <dependency> <groupId>com.helger</groupId> <artifactId>ph-jaxb22-plugin</artifactId> <version>2.3.3.2</version> </dependency> </dependencies> </plugin> </plugins> </build> </project>