From e273294360981e13aa96d264edd69f33043ad8b7 Mon Sep 17 00:00:00 2001 From: Anthony Stirling <77850077+Frooodle@users.noreply.github.com> Date: Mon, 1 Jan 2024 18:02:54 +0000 Subject: [PATCH] deps --- build.gradle | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 3bf48dcb..0d6c9fe5 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'org.springframework.boot' version '3.1.2' + id 'org.springframework.boot' version '3.2.1' id 'io.spring.dependency-management' version '1.1.3' id 'org.springdoc.openapi-gradle-plugin' version '1.8.0' id "io.swagger.swaggerhub" version "1.3.2" @@ -80,17 +80,19 @@ dependencies { //security updates implementation 'ch.qos.logback:logback-classic:1.4.14' implementation 'ch.qos.logback:logback-core:1.4.14' - implementation 'org.springframework:spring-webmvc:6.0.15' + implementation 'org.springframework:spring-webmvc:6.1.2' - implementation 'org.yaml:snakeyaml:2.1' + implementation 'org.yaml:snakeyaml:2.2' implementation 'org.springframework.boot:spring-boot-starter-web:3.2.1' implementation 'org.springframework.boot:spring-boot-starter-thymeleaf:3.2.1' if (System.getenv('DOCKER_ENABLE_SECURITY') != 'false') { implementation 'org.springframework.boot:spring-boot-starter-security:3.2.1' implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5:3.1.2.RELEASE' - implementation "org.springframework.boot:spring-boot-starter-data-jpa" - implementation "com.h2database:h2" + implementation "org.springframework.boot:spring-boot-starter-data-jpa:3.2.1" + + //2.2.x requires rebuild of DB file.. need migration path + implementation "com.h2database:h2:2.1.214" } testImplementation 'org.springframework.boot:spring-boot-starter-test:3.2.1'