diff --git a/build.gradle b/build.gradle index cc491b8..1ce8874 100644 --- a/build.gradle +++ b/build.gradle @@ -27,40 +27,40 @@ dependencies { compileOnly 'org.apache.tomcat:tomcat-catalina:11.0.21' // https://mvnrepository.com/artifact/org.springframework/spring-webmvc - compileOnly 'org.springframework:spring-webmvc:7.0.8' + compileOnly 'org.springframework:spring-webmvc:7.0.9' // https://mvnrepository.com/artifact/org.springframework/spring-tx - compileOnly 'org.springframework:spring-tx:7.0.8' + compileOnly 'org.springframework:spring-tx:7.0.9' // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-security - compileOnly 'org.springframework.boot:spring-boot-starter-security:4.1.0' + compileOnly 'org.springframework.boot:spring-boot-starter-security:4.1.1' // https://mvnrepository.com/artifact/org.springframework.amqp/spring-amqp - compileOnly 'org.springframework.boot:spring-boot-starter-amqp:4.1.0' + compileOnly 'org.springframework.boot:spring-boot-starter-amqp:4.1.1' // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-configuration-processor - annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor:4.1.0' + annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor:4.1.1' // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-actuator - compileOnly 'org.springframework.boot:spring-boot-starter-actuator:4.1.0' + compileOnly 'org.springframework.boot:spring-boot-starter-actuator:4.1.1' // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-health (new in Spring Boot 4) - compileOnly 'org.springframework.boot:spring-boot-health:4.1.0' + compileOnly 'org.springframework.boot:spring-boot-health:4.1.1' // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-autoconfigure - compileOnly 'org.springframework.boot:spring-boot-autoconfigure:4.1.0' + compileOnly 'org.springframework.boot:spring-boot-autoconfigure:4.1.1' // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-validation - compileOnly 'org.springframework.boot:spring-boot-starter-validation:4.1.0' + compileOnly 'org.springframework.boot:spring-boot-starter-validation:4.1.1' // Jackson 2.x - required for Retrofit converter-jackson (Retrofit doesn't support Jackson 3 yet) - compileOnly 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.22.0' + compileOnly 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.22.2' // Jackson 3.x - required for Spring Boot 4 (ObjectMapper, ControllerAdvisor, Audit module) - compileOnly 'tools.jackson.core:jackson-databind:3.1.4' + compileOnly 'tools.jackson.core:jackson-databind:3.2.2' // Spring Boot Jackson - provides JsonMapperBuilderCustomizer - compileOnly 'org.springframework.boot:spring-boot-jackson:4.1.0' + compileOnly 'org.springframework.boot:spring-boot-jackson:4.1.1' // https://mvnrepository.com/artifact/jakarta.validation/jakarta.validation-api compileOnly 'jakarta.validation:jakarta.validation-api:3.1.1' @@ -72,25 +72,25 @@ dependencies { compileOnly 'com.squareup.retrofit2:converter-jackson:3.0.0' // https://mvnrepository.com/artifact/com.squareup.okhttp3/logging-interceptor - compileOnly 'com.squareup.okhttp3:logging-interceptor:5.3.2' + compileOnly 'com.squareup.okhttp3:logging-interceptor:5.5.0' // https://mvnrepository.com/artifact/de.siegmar/logback-gelf compileOnly 'de.siegmar:logback-gelf:6.1.2' // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web - testImplementation 'org.springframework.boot:spring-boot-starter-web:4.1.0' + testImplementation 'org.springframework.boot:spring-boot-starter-web:4.1.1' // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test - testImplementation 'org.springframework.boot:spring-boot-starter-test:4.1.0' + testImplementation 'org.springframework.boot:spring-boot-starter-test:4.1.1' // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-webmvc-test (new in Spring Boot 4 for MockMvc testing) - testImplementation 'org.springframework.boot:spring-boot-webmvc-test:4.1.0' + testImplementation 'org.springframework.boot:spring-boot-webmvc-test:4.1.1' // https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-security - testImplementation 'org.springframework.boot:spring-boot-starter-security:4.1.0' + testImplementation 'org.springframework.boot:spring-boot-starter-security:4.1.1' // https://mvnrepository.com/artifact/org.springframework.amqp/spring-amqp - testImplementation 'org.springframework.boot:spring-boot-starter-amqp:4.1.0' + testImplementation 'org.springframework.boot:spring-boot-starter-amqp:4.1.1' // https://mvnrepository.com/artifact/org.json/json testImplementation 'org.json:json:20260522' @@ -105,7 +105,7 @@ dependencies { testImplementation 'org.mockito:mockito-junit-jupiter:5.23.0' // https://mvnrepository.com/artifact/org.mock-server/mockserver-netty - testImplementation('org.mock-server:mockserver-netty:7.2.0') { + testImplementation('org.mock-server:mockserver-netty:7.6.0') { exclude group: 'junit', module: 'junit' } diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index b1b8ef5..eddabd2 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index df6a6ad..ad7845b 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-9.5.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.7.1-bin.zip networkTimeout=10000 retries=0 retryBackOffMs=500 diff --git a/gradlew b/gradlew index b9bb139..249efbb 100755 --- a/gradlew +++ b/gradlew @@ -20,7 +20,7 @@ ############################################################################## # -# Gradle start up script for POSIX generated by Gradle. +# gradlew start up script for POSIX generated by Gradle. # # Important for running: # @@ -29,7 +29,7 @@ # bash, then to run this script, type that shell name before the whole # command line, like: # -# ksh Gradle +# ksh gradlew # # Busybox and similar reduced shells will NOT work, because this script # requires all of these POSIX shell features: diff --git a/gradlew.bat b/gradlew.bat index aa5f10b..8508ef6 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -19,7 +19,7 @@ @if "%DEBUG%"=="" @echo off @rem ########################################################################## @rem -@rem Gradle startup script for Windows +@rem gradlew startup script for Windows @rem @rem ########################################################################## @@ -72,7 +72,7 @@ echo location of your Java installation. 1>&2 -@rem Execute Gradle +@rem Execute gradlew @rem endlocal doesn't take effect until after the line is parsed and variables are expanded @rem which allows us to clear the local environment before executing the java command endlocal & "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %* & call :exitWithErrorLevel