diff --git a/Dockerfile b/Dockerfile index 239a00d..f8a9f9e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build -FROM gradle:8.11-jdk21-alpine AS build +FROM gradle:8.11.1-jdk21-alpine AS build WORKDIR /app COPY app/build.gradle . COPY app/src /app/src diff --git a/app/build.gradle b/app/build.gradle index 0efcdeb..8fc8e31 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -10,7 +10,7 @@ plugins { id 'application' id 'java' id 'io.freefair.lombok' version '8.11' - id 'org.springframework.boot' version '3.3.5' + id 'org.springframework.boot' version '3.4.0' id 'com.diffplug.spotless' version '6.25.0' } @@ -31,7 +31,7 @@ bootJar { } dependencies { - def springVersion = "3.3.5" + def springVersion = "3.3.6" def junitVersion = "5.11.3" implementation "org.springframework.boot:spring-boot-starter-actuator:$springVersion" @@ -45,7 +45,7 @@ dependencies { testImplementation("org.springframework.boot:spring-boot-starter-test:$springVersion") { exclude group: 'org.junit.vintage', module: 'junit-vintage-engine' } - testImplementation 'org.springframework.security:spring-security-test:6.4.0' + testImplementation 'org.springframework.security:spring-security-test:6.4.1' testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion" testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion" testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.11.3' diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 94113f2..e2847c8 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME