Skip to content

Commit

Permalink
Updated Spring Boot to version 3.3.5
Browse files Browse the repository at this point in the history
- removed unnecessary restriction from `tomcat-embed-core`
  • Loading branch information
gr4cza committed Oct 28, 2024
1 parent 6e77cc5 commit 09c11a9
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -45,7 +45,7 @@ allprojects {
languageVersion = JavaLanguageVersion.of(17)
}
}

sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -160,4 +156,4 @@ configure(allprojects - project(':conductor-grpc')) {
}
}
}
}
}

0 comments on commit 09c11a9

Please sign in to comment.