diff --git a/kop-common-dependencies/pom.xml b/kop-common-dependencies/pom.xml index 31db7fc6b0a2649bfe9e8d9a3a0450b8c039fce7..d22b0204b2644771a95941db1f563656dcda2bd1 100644 --- a/kop-common-dependencies/pom.xml +++ b/kop-common-dependencies/pom.xml @@ -31,7 +31,7 @@ <parent> <groupId>de.itvsh.kop.common</groupId> <artifactId>kop-common</artifactId> - <version>2.3.2-SNAPSHOT</version> + <version>3.0.0-SNAPSHOT</version> </parent> <artifactId>kop-common-dependencies</artifactId> @@ -40,7 +40,7 @@ <description>Dependenencies management for kop projects</description> <properties> - <pluto.version>1.15.0</pluto.version> + <pluto.version>1.18.0-SNAPSHOT</pluto.version> <license.version>1.8.0</license.version> <java.version>17</java.version> @@ -48,25 +48,25 @@ <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - <spring-boot.version>3.1.5</spring-boot.version> - <spring.version>6.0.13</spring.version> + <spring-boot.version>3.1.6</spring-boot.version> + <spring.version>6.0.14</spring.version> <grpc.spring-boot-starter.version>5.0.0</grpc.spring-boot-starter.version> <net.devh.grpc.spring-boot-server-starter.version>2.14.0.RELEASE</net.devh.grpc.spring-boot-server-starter.version> <net.devh.grpc.spring-boot-client-starter.version>2.14.0.RELEASE</net.devh.grpc.spring-boot-client-starter.version> - <grpc.version>1.58.0</grpc.version> + <grpc.version>1.59.0</grpc.version> <protoc-jar-plugin.version>3.11.4</protoc-jar-plugin.version> - <protobuf.version>3.24.4</protobuf.version> - <protoc-gen.version>1.58.0</protoc-gen.version> + <protobuf.version>3.25.1</protobuf.version> + <protoc-gen.version>1.59.0</protoc-gen.version> <mapstruct.version>1.5.5.Final</mapstruct.version> - <commons-io.version>2.13.0</commons-io.version> + <commons-io.version>2.15.0</commons-io.version> <commons-beanutils.version>1.9.4</commons-beanutils.version> - <commons-lang3.version>3.12.0</commons-lang3.version> + <commons-lang3.version>3.14.0</commons-lang3.version> <commons-collections.version>4.4</commons-collections.version> <java-jwt.version>4.4.0</java-jwt.version> @@ -74,7 +74,7 @@ <jakarta.version>2.1.0</jakarta.version> - <quarkus.platform.version>2.16.9.Final</quarkus.platform.version> + <quarkus.platform.version>3.5.3</quarkus.platform.version> <!-- Test --> <lorem.version>2.1</lorem.version> diff --git a/kop-common-lib/pom.xml b/kop-common-lib/pom.xml index b37d899f67839be3658d034c9592b949e8b0adb6..f5887714550e7d9b11f685388e29589158ea22e9 100644 --- a/kop-common-lib/pom.xml +++ b/kop-common-lib/pom.xml @@ -30,7 +30,7 @@ <parent> <groupId>de.itvsh.kop.common</groupId> <artifactId>kop-common</artifactId> - <version>2.3.2-SNAPSHOT</version> + <version>3.0.0-SNAPSHOT</version> </parent> <artifactId>kop-common-lib</artifactId> @@ -39,7 +39,7 @@ <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> - <mockito.version>4.8.1</mockito.version> + <mockito.version>5.7.0</mockito.version> </properties> diff --git a/kop-common-parent/pom.xml b/kop-common-parent/pom.xml index 44b81fa57ca346724123dc9eea4689e9799d1681..3940b38c047ef14c0f2c368b8a28dfe2a08efaf6 100644 --- a/kop-common-parent/pom.xml +++ b/kop-common-parent/pom.xml @@ -31,13 +31,13 @@ <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> - <version>3.1.5</version> + <version>3.1.6</version> <relativePath /> </parent> <groupId>de.itvsh.kop.common</groupId> <artifactId>kop-common-parent</artifactId> - <version>2.3.2-SNAPSHOT</version> + <version>3.0.0-SNAPSHOT</version> <packaging>pom</packaging> <name>Kop Common - Parent</name> @@ -48,15 +48,15 @@ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> - <kop-common.version>2.3.2-SNAPSHOT</kop-common.version> - <kop.license.version>1.6.0</kop.license.version> + <kop-common.version>3.0.0-SNAPSHOT</kop-common.version> + <kop.license.version>1.3.0</kop.license.version> <mapstruct.version>1.5.5.Final</mapstruct.version> - <spring-boot.version>3.1.5</spring-boot.version> + <spring-boot.version>3.1.6</spring-boot.version> <!-- plugins --> - <maven-surefire-plugin.version>3.2.1</maven-surefire-plugin.version> - <maven-failsafe-plugin.version>3.2.1</maven-failsafe-plugin.version> + <maven-surefire-plugin.version>3.2.2</maven-surefire-plugin.version> + <maven-failsafe-plugin.version>3.2.2</maven-failsafe-plugin.version> <jacoco.plugin.version>0.8.11</jacoco.plugin.version> <sonarqube.version>3.9.1.2184</sonarqube.version> @@ -64,7 +64,7 @@ <rewrite.plugin.version>4.38.2</rewrite.plugin.version> <!--overriden to fix security issue CVE-2022-1471 --> - <snakeyaml.version>2.1</snakeyaml.version> + <snakeyaml.version>2.2</snakeyaml.version> </properties> <dependencyManagement> diff --git a/kop-common-pdf/pom.xml b/kop-common-pdf/pom.xml index 33a2d0ff1d7af9949e930a22e7b504e233684a9e..3786085614f4f50608f9abbc2e976191657fb6a2 100644 --- a/kop-common-pdf/pom.xml +++ b/kop-common-pdf/pom.xml @@ -28,7 +28,7 @@ <parent> <groupId>de.itvsh.kop.common</groupId> <artifactId>kop-common</artifactId> - <version>2.3.2-SNAPSHOT</version> + <version>3.0.0-SNAPSHOT</version> </parent> <artifactId>kop-common-pdf</artifactId> <name>Kop Common - PDF Export library</name> diff --git a/kop-common-test/pom.xml b/kop-common-test/pom.xml index 886fab47e67c879a13a58665d347335ac9c55d6a..8fb4d1372aebfd4dc43728e50083386e255ecb8c 100644 --- a/kop-common-test/pom.xml +++ b/kop-common-test/pom.xml @@ -30,7 +30,7 @@ <parent> <groupId>de.itvsh.kop.common</groupId> <artifactId>kop-common-dependencies</artifactId> - <version>2.3.2-SNAPSHOT</version> + <version>3.0.0-SNAPSHOT</version> <relativePath>../kop-common-dependencies</relativePath> </parent> diff --git a/pom.xml b/pom.xml index 70defefeec26b73fa604332c8d8683bc437e0b0a..3f3521c726af0468ba07aa6fc9e8b3b2ec3e81e0 100644 --- a/pom.xml +++ b/pom.xml @@ -29,7 +29,7 @@ <groupId>de.itvsh.kop.common</groupId> <artifactId>kop-common</artifactId> - <version>2.3.2-SNAPSHOT</version> + <version>3.0.0-SNAPSHOT</version> <packaging>pom</packaging> <name>Kop Common</name> @@ -45,8 +45,8 @@ <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - <kop-common.version>2.3.2-SNAPSHOT</kop-common.version> - <kop.license.version>1.7.0</kop.license.version> + <kop-common.version>3.0.0-SNAPSHOT</kop-common.version> + <kop.license.version>1.3.0</kop.license.version> <java.version>17</java.version> <maven.compiler.target>17</maven.compiler.target>