From 09c11a91a9ba43f2b2441b54aee86dbf8f67f8f4 Mon Sep 17 00:00:00 2001 From: David Gracza <37271364+gr4cza@users.noreply.github.com> Date: Mon, 28 Oct 2024 19:17:24 +0100 Subject: [PATCH] Updated Spring Boot to version 3.3.5 - removed unnecessary restriction from `tomcat-embed-core` --- build.gradle | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/build.gradle b/build.gradle index c6ffda75d..4307f35d1 100644 --- a/build.gradle +++ b/build.gradle @@ -8,20 +8,20 @@ buildscript { } } dependencies { - classpath 'org.springframework.boot:spring-boot-gradle-plugin:3.1.4' + classpath 'org.springframework.boot:spring-boot-gradle-plugin:3.3.5' classpath 'com.diffplug.spotless:spotless-plugin-gradle:6.+' } } plugins { - id 'io.spring.dependency-management' version '1.0.13.RELEASE' + id 'io.spring.dependency-management' version '1.1.3' id 'java' id 'application' id 'maven-publish' id 'signing' id 'java-library' id "com.diffplug.spotless" version "6.25.0" - id 'org.springframework.boot' version '3.3.0' + id 'org.springframework.boot' version '3.3.5' } // Establish version and status @@ -45,7 +45,7 @@ allprojects { languageVersion = JavaLanguageVersion.of(17) } } - + sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 @@ -101,11 +101,7 @@ allprojects { strictly '1.5.4' } } - implementation('org.apache.tomcat.embed:tomcat-embed-core') { - version { - strictly '10.1.25' - } - } + implementation('org.apache.tomcat.embed:tomcat-embed-core') } // processes additional configuration metadata json file as described here // https://docs.spring.io/spring-boot/docs/2.3.1.RELEASE/reference/html/appendix-configuration-metadata.html#configuration-metadata-additional-metadata @@ -160,4 +156,4 @@ configure(allprojects - project(':conductor-grpc')) { } } } -} \ No newline at end of file +}