2024-02-12 18:03:02 +01:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-11-08 12:04:33 +01:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2017-05-11 15:03:37 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<groupId>at.vvo.omds</groupId>
|
|
|
|
|
<artifactId>OMDSServiceDefinition</artifactId>
|
2025-02-28 15:39:58 +01:00
|
|
|
<version>2025.27-MINOR-SNAPSHOT</version>
|
2023-07-13 09:54:38 +02:00
|
|
|
<name>OMDS Service Definition</name>
|
2024-05-15 11:37:34 +02:00
|
|
|
<description>Dieses Projekt enthält die Definitionen für die OMDS-Services.</description>
|
2024-02-12 18:03:02 +01:00
|
|
|
|
2017-05-11 15:03:37 +02:00
|
|
|
<properties>
|
2025-03-18 14:24:22 +01:00
|
|
|
<currentReleaseDir>r2025_27</currentReleaseDir>
|
2017-05-11 15:03:37 +02:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2024-02-12 18:03:02 +01:00
|
|
|
|
2018-11-08 12:04:33 +01:00
|
|
|
<maven.build.timestamp.format>yyyyMMdd</maven.build.timestamp.format>
|
2025-02-06 17:53:30 +01:00
|
|
|
<timestamp>${maven.build.timestamp}</timestamp>
|
2019-06-12 19:33:49 +02:00
|
|
|
|
2025-02-06 17:53:30 +01:00
|
|
|
<maven.compiler.release>17</maven.compiler.release>
|
2017-05-11 15:03:37 +02:00
|
|
|
</properties>
|
2024-02-12 18:03:02 +01:00
|
|
|
|
2017-05-11 15:03:37 +02:00
|
|
|
<build>
|
2018-11-08 12:04:33 +01:00
|
|
|
<pluginManagement>
|
|
|
|
|
<plugins>
|
2022-01-05 00:05:20 +01:00
|
|
|
<plugin>
|
2018-11-08 12:04:33 +01:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2024-01-16 17:50:22 +01:00
|
|
|
<version>3.3.0</version>
|
2018-11-08 12:04:33 +01:00
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2024-01-16 17:50:22 +01:00
|
|
|
<version>3.12.1</version>
|
2018-11-08 12:04:33 +01:00
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
2023-02-02 13:59:11 +01:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
2024-01-16 17:50:22 +01:00
|
|
|
<version>3.6.0</version>
|
2023-02-02 13:59:11 +01:00
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
2018-11-08 12:04:33 +01:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2024-01-16 17:50:22 +01:00
|
|
|
<version>3.6.3</version>
|
2023-02-02 13:59:11 +01:00
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
2018-11-08 12:04:33 +01:00
|
|
|
</pluginManagement>
|
2024-02-12 18:03:02 +01:00
|
|
|
|
2024-01-16 17:50:22 +01:00
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
2017-05-11 15:03:37 +02:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2024-01-16 17:50:22 +01:00
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<descriptors>
|
|
|
|
|
<descriptor>assembly.xml</descriptor>
|
|
|
|
|
</descriptors>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>make-assembly</id> <!-- this is used for inheritance merges -->
|
|
|
|
|
<phase>install</phase> <!-- bind to the install phase, damit source-jar und javadoc-jar mit eingepackt werden -->
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>single</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2017-05-11 15:03:37 +02:00
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
|
<version>2.3.1</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<archive>
|
|
|
|
|
<addMavenDescriptor>false</addMavenDescriptor>
|
|
|
|
|
<manifest>
|
|
|
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
|
|
|
</manifest>
|
|
|
|
|
<manifestEntries>
|
2019-06-12 19:33:49 +02:00
|
|
|
<BuildTimestamp>${maven.build.timestamp}</BuildTimestamp>
|
2024-01-16 17:50:22 +01:00
|
|
|
<JDKVersion>${maven.compiler.release}</JDKVersion>
|
2017-05-11 15:03:37 +02:00
|
|
|
</manifestEntries>
|
|
|
|
|
</archive>
|
|
|
|
|
</configuration>
|
2024-02-12 18:03:02 +01:00
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
2017-05-11 15:03:37 +02:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2018-11-08 12:04:33 +01:00
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
<version>2.19.1</version>
|
2017-05-11 15:03:37 +02:00
|
|
|
</plugin>
|
2024-02-12 18:03:02 +01:00
|
|
|
|
2018-11-08 12:04:33 +01:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2018-12-11 12:09:07 +01:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach sources</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2018-11-08 12:04:33 +01:00
|
|
|
</plugin>
|
2024-02-12 18:03:02 +01:00
|
|
|
|
2018-11-08 12:04:33 +01:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2024-02-12 18:03:02 +01:00
|
|
|
<configuration>
|
|
|
|
|
<doclint>reference</doclint>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
2018-12-11 12:09:07 +01:00
|
|
|
<id>attach-javadocs</id>
|
|
|
|
|
<goals>
|
2024-02-12 18:03:02 +01:00
|
|
|
<goal>jar</goal>
|
2018-12-11 12:09:07 +01:00
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2024-02-12 18:03:02 +01:00
|
|
|
</plugin>
|
|
|
|
|
|
2025-02-06 14:20:46 +01:00
|
|
|
<plugin>
|
|
|
|
|
<!-- Lizenz: Berkeley Software Distribution, frei -->
|
|
|
|
|
<groupId>org.jvnet.jaxb</groupId>
|
|
|
|
|
<artifactId>jaxb-maven-plugin</artifactId>
|
|
|
|
|
<version>4.0.0</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>generate</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<locale>en</locale>
|
|
|
|
|
<schemaLanguage>XMLSCHEMA</schemaLanguage>
|
2025-03-18 14:24:22 +01:00
|
|
|
<schemaDirectory >${project.basedir}/src/main/resources/def/${currentReleaseDir}</schemaDirectory>
|
|
|
|
|
<schemaDirectory >${project.basedir}/src/main/resources/def/${currentReleaseDir}</schemaDirectory>
|
|
|
|
|
<bindingDirectory>${project.basedir}/src/main/resources/def/${currentReleaseDir}</bindingDirectory>
|
2025-02-06 14:20:46 +01:00
|
|
|
<schemaIncludes>
|
|
|
|
|
<include>*.xsd</include>
|
|
|
|
|
</schemaIncludes>
|
|
|
|
|
<bindingIncludes>
|
|
|
|
|
<include>*.xjb</include>
|
|
|
|
|
</bindingIncludes>
|
|
|
|
|
<args>
|
|
|
|
|
<arg>-Xannotate</arg>
|
|
|
|
|
</args>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.jvnet.jaxb</groupId>
|
|
|
|
|
<artifactId>jaxb-plugins</artifactId>
|
|
|
|
|
<version>3.0.0</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.jvnet.jaxb</groupId>
|
|
|
|
|
<artifactId>jaxb-plugin-annotate</artifactId>
|
|
|
|
|
<version>3.0.0</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2022-01-05 00:05:20 +01:00
|
|
|
|
2025-02-04 15:43:58 +01:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2022-01-05 00:05:20 +01:00
|
|
|
|
2018-11-08 12:04:33 +01:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
2025-02-04 15:43:58 +01:00
|
|
|
<!-- https://mvnrepository.com/artifact/jakarta.xml.bind/jakarta.xml.bind-api -->
|
|
|
|
|
<!-- MIT License http://www.eclipse.org/org/documents/edl-v10.php -->
|
|
|
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
|
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
|
|
|
|
<version>4.0.2</version>
|
2018-11-08 12:04:33 +01:00
|
|
|
</dependency>
|
2025-03-07 12:41:48 +01:00
|
|
|
<dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/jakarta.xml.soap/jakarta.xml.soap-api -->
|
|
|
|
|
<!-- MIT License http://www.eclipse.org/org/documents/edl-v10.php -->
|
|
|
|
|
<groupId>jakarta.xml.soap</groupId>
|
|
|
|
|
<artifactId>jakarta.xml.soap-api</artifactId>
|
|
|
|
|
<version>3.0.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.sun.xml.messaging.saaj/saaj-impl -->
|
|
|
|
|
<!-- MIT License http://www.eclipse.org/org/documents/edl-v10.php -->
|
|
|
|
|
<groupId>com.sun.xml.messaging.saaj</groupId>
|
|
|
|
|
<artifactId>saaj-impl</artifactId>
|
|
|
|
|
<version>3.0.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.glassfish.jaxb/jaxb-runtime -->
|
|
|
|
|
<!-- MIT License http://www.eclipse.org/org/documents/edl-v10.php -->
|
|
|
|
|
<groupId>org.glassfish.jaxb</groupId>
|
|
|
|
|
<artifactId>jaxb-runtime</artifactId>
|
|
|
|
|
<version>4.0.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter -->
|
|
|
|
|
<!-- MIT License https://www.eclipse.org/legal/epl-v20.html -->
|
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
2025-03-18 14:24:22 +01:00
|
|
|
<version>5.12.1</version>
|
2025-03-07 12:41:48 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
|
|
|
|
|
<!-- MIT License http://www.opensource.org/licenses/mit-license.php -->
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
<version>2.0.16</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-reload4j -->
|
|
|
|
|
<!-- MIT License http://www.opensource.org/licenses/mit-license.php -->
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-reload4j</artifactId>
|
|
|
|
|
<version>2.0.16</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2018-11-08 12:04:33 +01:00
|
|
|
</dependencies>
|
2024-02-12 18:03:02 +01:00
|
|
|
|
2018-11-08 12:04:33 +01:00
|
|
|
<!-- Zielordner fuer Deploy unter OMDS-Entwicklung -->
|
2017-05-11 15:03:37 +02:00
|
|
|
<distributionManagement>
|
2018-11-08 12:04:33 +01:00
|
|
|
<repository>
|
|
|
|
|
<id>omdsaccess</id><!-- Username-Passwort in servers im settings.xml unter dieser id -->
|
|
|
|
|
<name>OMDS Release Repository</name>
|
2022-07-08 18:33:19 +02:00
|
|
|
<url>https://entw.kapdion.com/nexus/repository/omdsReleases/</url>
|
2018-11-08 12:04:33 +01:00
|
|
|
</repository>
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
<id>omdsaccess</id><!-- Username-Passwort in servers im settings.xml unter dieser id -->
|
|
|
|
|
<name>OMDS Snapshot Repository</name>
|
2022-07-08 18:33:19 +02:00
|
|
|
<url>https://entw.kapdion.com/nexus/repository/omdsSnapshots/</url>
|
2018-11-08 12:04:33 +01:00
|
|
|
</snapshotRepository>
|
2017-05-11 15:03:37 +02:00
|
|
|
</distributionManagement>
|
2024-02-12 18:03:02 +01:00
|
|
|
|
2017-05-11 15:03:37 +02:00
|
|
|
</project>
|