Versionsnummern im Pom zurückgerollt
Some checks failed
Productmodel Java CI with Maven / build (push) Failing after 1m1s

This commit is contained in:
2026-01-12 18:01:57 +01:00
parent 837d05492b
commit a1dae79536

27
pom.xml
View File

@@ -12,19 +12,10 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss Z</maven.build.timestamp.format> <maven.build.timestamp.format>yyyyMMdd</maven.build.timestamp.format>
<timestamp>${maven.build.timestamp}</timestamp>
<maven.compiler.release>22</maven.compiler.release> <maven.compiler.release>22</maven.compiler.release>
<!-- Plugin Versions -->
<maven-jar-plugin.version>3.4.2</maven-jar-plugin.version>
<maven-surefire-plugin.version>3.3.1</maven-surefire-plugin.version>
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
<cxf-codegen-plugin.version>4.0.5</cxf-codegen-plugin.version>
<!-- Dependency Versions -->
<junit-jupiter.version>5.10.3</junit-jupiter.version>
</properties> </properties>
<build> <build>
@@ -33,12 +24,12 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId> <artifactId>maven-source-plugin</artifactId>
<version>${maven-source-plugin.version}</version> <version>3.3.0</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version> <version>3.12.1</version>
</plugin> </plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>
@@ -48,7 +39,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId> <artifactId>maven-jar-plugin</artifactId>
<version>${maven-jar-plugin.version}</version> <version>2.3.1</version>
<configuration> <configuration>
<archive> <archive>
<addMavenDescriptor>false</addMavenDescriptor> <addMavenDescriptor>false</addMavenDescriptor>
@@ -66,7 +57,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version> <version>2.19.1</version>
</plugin> </plugin>
<plugin> <plugin>
@@ -101,7 +92,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<plugin> <plugin>
<groupId>org.apache.cxf</groupId> <groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId> <artifactId>cxf-codegen-plugin</artifactId>
<version>${cxf-codegen-plugin.version}</version> <version>4.1.3</version>
<executions> <executions>
<execution> <execution>
<id>generate-sources</id> <id>generate-sources</id>
@@ -258,8 +249,8 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xs
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter --> <!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter -->
<!-- MIT License https://www.eclipse.org/legal/epl-v20.html --> <!-- MIT License https://www.eclipse.org/legal/epl-v20.html -->
<groupId>org.junit.jupiter</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId> <artifactId>junit-jupiter</artifactId>
<version>${junit-jupiter.version}</version> <version>RELEASE</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>