datex4j-xml
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>dev.juherr.datex4j</groupId>
<artifactId>datex4j-xml</artifactId>
<version>0.1.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>dev.juherr.datex4j</groupId>
<artifactId>datex4j</artifactId>
<version>0.1.0</version>
</parent>
<artifactId>datex4j-xml</artifactId>
<packaging>jar</packaging>
<name>datex4j-xml</name>
<description>
Small, JAXB-hiding API for reading, writing, validating and pretty-printing DATEX II XML.
</description>
<properties>
<jacoco.line.minimum>0.85</jacoco.line.minimum>
</properties>
<dependencies>
<!-- SPI consumed by the ServiceLoader-based VersionModel registry (main code). -->
<dependency>
<groupId>dev.juherr.datex4j</groupId>
<artifactId>datex4j-model-spi</artifactId>
</dependency>
<!-- All bundled providers and schemas are present only while testing the version-neutral facade. -->
<dependency>
<groupId>dev.juherr.datex4j</groupId>
<artifactId>datex4j-model</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>dev.juherr.datex4j</groupId>
<artifactId>datex4j-core</artifactId>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<excludes>
<!-- Mechanical LSInput adapter methods are exercised indirectly by schema compilation. -->
<exclude>**/ClasspathSchemas$StreamLsInput*</exclude>
</excludes>
</configuration>
</plugin>
<!--
Consumable as a JPMS automatic module. A full module-info is intentionally deferred:
this module depends on the generated automatic module datex4j-model and drives JAXB
reflection, which a named module makes fragile under `mvn test`. See docs/architecture.md.
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>dev.juherr.datex4j.xml</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>