datex4j-model
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>dev.juherr.datex4j</groupId>
<artifactId>datex4j-model</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-model</artifactId>
<packaging>jar</packaging>
<name>datex4j-model</name>
<description>
Aggregate of every generated DATEX II model version. Depending on this artifact pulls in all
datex4j-model-vX_Y modules (v2.0 through v2.3 and v3.0 through v3.7) transitively, together with their bundled XSD
resources and ServiceLoader-registered DatexModelProvider implementations. Consumers that only
need a single version may depend on the matching datex4j-model-vX_Y module directly instead.
</description>
<dependencies>
<!-- Re-expose every per-version model (and, transitively, datex4j-model-spi + datex4j-core). -->
<dependency>
<groupId>dev.juherr.datex4j</groupId>
<artifactId>datex4j-model-v2_0</artifactId>
</dependency>
<dependency>
<groupId>dev.juherr.datex4j</groupId>
<artifactId>datex4j-model-v2_1</artifactId>
</dependency>
<dependency>
<groupId>dev.juherr.datex4j</groupId>
<artifactId>datex4j-model-v2_2</artifactId>
</dependency>
<dependency>
<groupId>dev.juherr.datex4j</groupId>
<artifactId>datex4j-model-v2_3</artifactId>
</dependency>
<dependency>
<groupId>dev.juherr.datex4j</groupId>
<artifactId>datex4j-model-v3_0</artifactId>
</dependency>
<dependency>
<groupId>dev.juherr.datex4j</groupId>
<artifactId>datex4j-model-v3_1</artifactId>
</dependency>
<dependency>
<groupId>dev.juherr.datex4j</groupId>
<artifactId>datex4j-model-v3_2</artifactId>
</dependency>
<dependency>
<groupId>dev.juherr.datex4j</groupId>
<artifactId>datex4j-model-v3_3</artifactId>
</dependency>
<dependency>
<groupId>dev.juherr.datex4j</groupId>
<artifactId>datex4j-model-v3_4</artifactId>
</dependency>
<dependency>
<groupId>dev.juherr.datex4j</groupId>
<artifactId>datex4j-model-v3_5</artifactId>
</dependency>
<dependency>
<groupId>dev.juherr.datex4j</groupId>
<artifactId>datex4j-model-v3_6</artifactId>
</dependency>
<dependency>
<groupId>dev.juherr.datex4j</groupId>
<artifactId>datex4j-model-v3_7</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Keep the historical automatic-module name for the aggregate jar. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>dev.juherr.datex4j.model</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
<!-- Document the package-private marker so this aggregate has a valid Javadoc artifact. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven-javadoc-plugin.version}</version>
<configuration>
<show>package</show>
</configuration>
</plugin>
<!-- No supported behavior to cover here; the generated models live in per-version modules. -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>