From c9029ea8206c43757ea478a293c2e14686b55d49 Mon Sep 17 00:00:00 2001 From: Bibek Aryal Date: Thu, 21 Nov 2024 20:30:18 -0700 Subject: [PATCH] Dependencies Updated (https://bit.ly/app-dependency-update) --- Dockerfile | 2 +- app/build.gradle | 6 +++--- gradle/wrapper/gradle-wrapper.properties | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) 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