Skip to content

Commit

Permalink
Update Spring Boot and Testcontainers versions
Browse files Browse the repository at this point in the history
The versions of Spring Boot and Testcontainers have been updated. The Spring Boot version has been bumped from 3.3.1 to 3.3.2 and the Testcontainers' version has been raised from 1.19.8 to 1.20.0. These updates ensure we are utilizing the latest available patches and improvements.
  • Loading branch information
timakden committed Jul 19, 2024
1 parent 98251af commit 51183ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_21
plugins {
idea
id("com.github.ben-manes.versions") version "0.51.0"
id("org.springframework.boot") version "3.3.1"
id("org.springframework.boot") version "3.3.2"
id("io.spring.dependency-management") version "1.1.6"
kotlin("jvm") version "2.0.0"
kotlin("plugin.spring") version "2.0.0"
Expand All @@ -19,8 +19,8 @@ repositories {

dependencyManagement {
imports {
mavenBom("org.springframework.boot:spring-boot-dependencies:3.3.1")
mavenBom("org.testcontainers:testcontainers-bom:1.19.8")
mavenBom("org.springframework.boot:spring-boot-dependencies:3.3.2")
mavenBom("org.testcontainers:testcontainers-bom:1.20.0")
}
}

Expand Down

0 comments on commit 51183ff

Please sign in to comment.