From bfd9ae72b514240151b4edfa707c8c2b0b41cd23 Mon Sep 17 00:00:00 2001 From: Robert Goldmann <deadlocker@gmx.de> Date: Sat, 1 May 2021 12:44:11 +0200 Subject: [PATCH] #565 - update spring boot to 2.3.10.RELEASE --- pom.xml | 31 ++++++++++++++++++++----------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/pom.xml b/pom.xml index c1a429474..df626d4ff 100644 --- a/pom.xml +++ b/pom.xml @@ -35,7 +35,7 @@ <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> - <version>2.2.11.RELEASE</version> + <version>2.3.10.RELEASE</version> <relativePath/> </parent> @@ -72,6 +72,7 @@ <h2database.version>1.4.199</h2database.version> <itextpdf.version>5.5.13.2</itextpdf.version> <usertype-core.version>6.0.1.GA</usertype-core.version> + <joda-time.version>2.10.10</joda-time.version> <app.versionDate>${maven.build.timestamp}</app.versionDate> <maven.build.timestamp.format>dd.MM.yy</maven.build.timestamp.format> @@ -115,9 +116,15 @@ <artifactId>spring-boot-starter-tomcat</artifactId> </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-validation</artifactId> + </dependency> + <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> + <version>${joda-time.version}</version> </dependency> <dependency> @@ -165,6 +172,18 @@ <version>${itextpdf.version}</version> </dependency> + <dependency> + <groupId>org.eclipse.jgit</groupId> + <artifactId>org.eclipse.jgit</artifactId> + <version>${jgit.version}</version> + </dependency> + + <dependency> + <groupId>org.padler</groupId> + <artifactId>natorder</artifactId> + <version>${natorder.version}</version> + </dependency> + <!--Webjars--> <dependency> <groupId>org.webjars</groupId> @@ -201,16 +220,6 @@ <artifactId>codemirror</artifactId> <version>${codemirror.version}</version> </dependency> - <dependency> - <groupId>org.eclipse.jgit</groupId> - <artifactId>org.eclipse.jgit</artifactId> - <version>${jgit.version}</version> - </dependency> - <dependency> - <groupId>org.padler</groupId> - <artifactId>natorder</artifactId> - <version>${natorder.version}</version> - </dependency> <!-- selenium --> <dependency> -- GitLab