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>
|
2026-01-12 12:32:56 +01:00
|
|
|
<groupId>com.kapdion.omds</groupId>
|
2026-01-07 13:23:50 +01:00
|
|
|
<artifactId>productmodel</artifactId>
|
2026-01-12 12:32:56 +01:00
|
|
|
<version>2025.27-SNAPSHOT</version>
|
2026-01-07 13:23:50 +01:00
|
|
|
<name>productmodel abgeleitet von OMDS Service Definition</name>
|
|
|
|
|
<description>Dieses Projekt enthält das Produktmodell, abgeleictet vom OMDS Produktmodell.</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
|
|
|
|
2026-01-12 18:01:57 +01:00
|
|
|
<maven.build.timestamp.format>yyyyMMdd</maven.build.timestamp.format>
|
|
|
|
|
<timestamp>${maven.build.timestamp}</timestamp>
|
2019-06-12 19:33:49 +02:00
|
|
|
|
2026-01-07 13:42:20 +01:00
|
|
|
<maven.compiler.release>22</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>
|
2026-01-12 18:01:57 +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>
|
2026-01-12 18:01:57 +01:00
|
|
|
<version>3.12.1</version>
|
2018-11-08 12:04:33 +01:00
|
|
|
</plugin>
|
2023-02-02 13:59:11 +01:00
|
|
|
</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>
|
2026-01-12 12:32:56 +01:00
|
|
|
|
2025-08-14 15:14:58 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2026-01-12 18:01:57 +01:00
|
|
|
<version>2.3.1</version>
|
2025-08-14 15:14:58 +02:00
|
|
|
<configuration>
|
|
|
|
|
<archive>
|
|
|
|
|
<addMavenDescriptor>false</addMavenDescriptor>
|
|
|
|
|
<manifest>
|
|
|
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
|
|
|
</manifest>
|
|
|
|
|
<manifestEntries>
|
|
|
|
|
<BuildTimestamp>${maven.build.timestamp}</BuildTimestamp>
|
|
|
|
|
<JDKVersion>${maven.compiler.release}</JDKVersion>
|
|
|
|
|
</manifestEntries>
|
|
|
|
|
</archive>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2022-01-05 00:05:20 +01:00
|
|
|
|
2025-08-14 15:14:58 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2026-01-12 18:01:57 +01:00
|
|
|
<version>2.19.1</version>
|
2025-08-14 15:14:58 +02:00
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach sources</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<doclint>reference</doclint>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
2025-10-13 09:48:22 +02:00
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-codegen-plugin</artifactId>
|
2026-01-12 18:01:57 +01:00
|
|
|
<version>4.1.3</version>
|
2025-08-14 15:14:58 +02:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
2025-10-13 09:48:22 +02:00
|
|
|
<id>generate-sources</id>
|
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
|
<configuration>
|
|
|
|
|
<sourceRoot>${project.build.directory}/generated-sources/cxf</sourceRoot>
|
|
|
|
|
<wsdlOptions>
|
|
|
|
|
<wsdlOption>
|
|
|
|
|
<wsdl>${project.basedir}/src/main/resources/def/${currentReleaseDir}/omds3Services.wsdl</wsdl>
|
|
|
|
|
<extraargs>
|
|
|
|
|
<extraarg>-xjc-Xannotate</extraarg>
|
|
|
|
|
<extraarg>-client</extraarg>
|
|
|
|
|
<extraarg>-impl</extraarg>
|
|
|
|
|
<extraarg>-server</extraarg>
|
|
|
|
|
<extraarg>-p</extraarg>
|
|
|
|
|
<extraarg>at.vvo.omds.services</extraarg>
|
|
|
|
|
</extraargs>
|
|
|
|
|
<bindingFiles>
|
|
|
|
|
<bindingFile>${project.basedir}/src/main/resources/def/${currentReleaseDir}/binding.xjb</bindingFile>
|
|
|
|
|
</bindingFiles>
|
|
|
|
|
</wsdlOption>
|
|
|
|
|
</wsdlOptions>
|
|
|
|
|
</configuration>
|
2025-08-14 15:14:58 +02:00
|
|
|
<goals>
|
2025-10-13 09:48:22 +02:00
|
|
|
<goal>wsdl2java</goal>
|
2025-08-14 15:14:58 +02:00
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2025-10-13 09:48:22 +02:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jvnet.jaxb</groupId>
|
|
|
|
|
<artifactId>jaxb-plugin-annotate</artifactId>
|
|
|
|
|
<version>3.0.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2025-08-14 15:14:58 +02:00
|
|
|
</plugin>
|
2025-08-26 17:07:05 +02:00
|
|
|
|
2025-08-14 15:14:58 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
|
<artifactId>javafx-maven-plugin</artifactId>
|
|
|
|
|
<version>0.0.8</version>
|
|
|
|
|
<configuration>
|
2025-10-22 15:15:47 +02:00
|
|
|
<mainClass>at.vvo.omds.client.gui.MainView</mainClass>
|
2025-08-14 15:14:58 +02:00
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
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>
|
|
|
|
|
|
2025-08-14 15:14:58 +02:00
|
|
|
<dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.openjfx/javafx-controls -->
|
2025-10-13 09:48:22 +02:00
|
|
|
<!-- GPLv2+CE License https://openjdk.java.net/legal/gplv2+ce.html-->
|
2025-08-14 15:14:58 +02:00
|
|
|
<groupId>org.openjfx</groupId>
|
|
|
|
|
<artifactId>javafx-controls</artifactId>
|
|
|
|
|
<version>23.0.1</version>
|
|
|
|
|
</dependency>
|
2025-10-13 09:48:22 +02:00
|
|
|
<dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.controlsfx/controlsfx -->
|
|
|
|
|
<!-- The 3-Clause BSD License http://www.opensource.org/licenses/bsd-license.php -->
|
|
|
|
|
<groupId>org.controlsfx</groupId>
|
|
|
|
|
<artifactId>controlsfx</artifactId>
|
|
|
|
|
<version>11.2.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.jvnet.jaxb2_commons/jaxb2-basics-annotate -->
|
|
|
|
|
<!-- BSD 2-Clause License http://opensource.org/licenses/BSD-2-Clause-->
|
|
|
|
|
<groupId>org.jvnet.jaxb2_commons</groupId>
|
|
|
|
|
<artifactId>jaxb2-basics-annotate</artifactId>
|
|
|
|
|
<version>1.1.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.sun.xml.ws/jaxws-maven-plugin -->
|
|
|
|
|
<!-- The Apache Software License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt -->
|
|
|
|
|
<groupId>com.sun.xml.ws</groupId>
|
|
|
|
|
<artifactId>jaxws-maven-plugin</artifactId>
|
|
|
|
|
<version>4.0.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-restclient -->
|
|
|
|
|
<!-- The Apache Software License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt -->
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-restclient</artifactId>
|
|
|
|
|
<version>4.0.0-M3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
|
|
|
|
|
<!-- The Apache Software License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.txt -->
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
|
<version>2.20.0</version>
|
|
|
|
|
</dependency>
|
2025-08-14 15:14:58 +02:00
|
|
|
|
2025-10-13 09:48:22 +02:00
|
|
|
<dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.eclipse.rdf4j/rdf4j-model -->
|
|
|
|
|
<!-- Eclipse Distribution License v1.0 https://eclipse.org/org/documents/edl-v10.php-->
|
|
|
|
|
<groupId>org.eclipse.rdf4j</groupId>
|
|
|
|
|
<artifactId>rdf4j-model</artifactId>
|
|
|
|
|
<version>5.1.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.eclipse.rdf4j/rdf4j-rio-turtle -->
|
|
|
|
|
<!-- Eclipse Distribution License v1.0 https://eclipse.org/org/documents/edl-v10.php-->
|
|
|
|
|
<groupId>org.eclipse.rdf4j</groupId>
|
|
|
|
|
<artifactId>rdf4j-rio-turtle</artifactId>
|
|
|
|
|
<version>5.1.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.eclipse.rdf4j/rdf4j-shacl -->
|
|
|
|
|
<!-- Eclipse Distribution License v1.0 https://eclipse.org/org/documents/edl-v10.php-->
|
|
|
|
|
<groupId>org.eclipse.rdf4j</groupId>
|
|
|
|
|
<artifactId>rdf4j-shacl</artifactId>
|
|
|
|
|
<version>5.1.5</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.eclipse.rdf4j/rdf4j-rio-jsonld -->
|
|
|
|
|
<!-- Eclipse Distribution License v1.0 https://eclipse.org/org/documents/edl-v10.php-->
|
|
|
|
|
<groupId>org.eclipse.rdf4j</groupId>
|
|
|
|
|
<artifactId>rdf4j-rio-jsonld</artifactId>
|
|
|
|
|
<version>5.1.5</version>
|
|
|
|
|
</dependency>
|
2025-08-14 15:14:58 +02:00
|
|
|
|
2025-03-07 12:41:48 +01:00
|
|
|
<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>
|
2026-01-12 18:01:57 +01:00
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
|
<version>RELEASE</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>
|
2025-08-14 15:14:58 +02:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
|
<version>2.0.16</version>
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
2018-11-08 12:04:33 +01:00
|
|
|
</dependencies>
|
2024-02-12 18:03:02 +01:00
|
|
|
|
2026-01-12 17:12:35 +01:00
|
|
|
<distributionManagement>
|
|
|
|
|
<repository>
|
2026-01-12 17:25:23 +01:00
|
|
|
<id>gitea</id>
|
2026-01-12 17:12:35 +01:00
|
|
|
<name>Gitea Release Repository</name>
|
|
|
|
|
<url>https://gs.kapdion.com/api/v1/packages/KapDion/maven</url>
|
|
|
|
|
</repository>
|
|
|
|
|
<snapshotRepository>
|
2026-01-12 17:25:23 +01:00
|
|
|
<id>gitea</id>
|
2026-01-12 17:12:35 +01:00
|
|
|
<name>Gitea Snapshot Repository</name>
|
|
|
|
|
<url>https://gs.kapdion.com/api/v1/packages/KapDion/maven</url>
|
2026-01-12 17:25:23 +01:00
|
|
|
<uniqueVersion>false</uniqueVersion>
|
2026-01-12 17:12:35 +01:00
|
|
|
</snapshotRepository>
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
2026-01-12 13:15:31 +01:00
|
|
|
</project>
|