diff --git a/build.gradle b/build.gradle index 38e6ed4f..03f5cccd 100644 --- a/build.gradle +++ b/build.gradle @@ -11,7 +11,7 @@ ext { // doesn't work in build.gradle in buildSrc project ext { - springCloudDependencies = "org.springframework.cloud:spring-cloud-dependencies:2025.1.1" + springCloudDependencies = "org.springframework.cloud:spring-cloud-dependencies:2025.1.2" } //share project version between all projects diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle index 1690028a..f385c809 100644 --- a/buildSrc/build.gradle +++ b/buildSrc/build.gradle @@ -10,9 +10,9 @@ repositories { // dependency for spring boot gradle plugin and dependency management. // It is necessary to share it between conventions as plugins dependencies { - implementation 'org.springframework.boot:spring-boot-gradle-plugin:4.0.6' + implementation 'org.springframework.boot:spring-boot-gradle-plugin:4.1.0' implementation 'io.spring.gradle:dependency-management-plugin:1.1.7' - implementation 'com.diffplug.spotless:spotless-lib:4.6.2' - implementation 'com.diffplug.spotless:spotless-plugin-gradle:8.6.0' + implementation 'com.diffplug.spotless:spotless-lib:4.8.0' + implementation 'com.diffplug.spotless:spotless-plugin-gradle:8.8.0' runtimeOnly 'com.google.protobuf:protobuf-gradle-plugin:0.10.0' } \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 4dcb8425..db6d1940 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.6.1-bin.zip networkTimeout=10000 retries=0 retryBackOffMs=500 diff --git a/gradlew b/gradlew index b9bb139f..249efbb0 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 aa5f10b0..8508ef68 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 diff --git a/telegram_chat_service/build.gradle b/telegram_chat_service/build.gradle index 0b8ba842..207b552f 100644 --- a/telegram_chat_service/build.gradle +++ b/telegram_chat_service/build.gradle @@ -3,9 +3,9 @@ import com.github.jasypt.encrypt.JasyptPlugin buildscript { dependencies { classpath files('jasypt-encrypt-plugin-1.3.3.jar') - classpath files('jooq-codegen-gradle-3.19.30.jar') // update only if starter updated it + classpath files('jooq-codegen-gradle-3.21.5.jar') // update only if starter updated it classpath("org.testcontainers:testcontainers-postgresql:2.0.5") - classpath("org.postgresql:postgresql:42.7.11") + classpath("org.postgresql:postgresql:42.7.12") classpath("org.liquibase:liquibase-gradle-plugin:3.0.2") classpath('org.liquibase:liquibase-core:5.0.3') } @@ -19,7 +19,7 @@ plugins { id 'spring-web-conventions' id 'lombok-conventions' id "io.github.ximtech.jasypt-encrypt-plugin" version "1.4.1" - id "org.jooq.jooq-codegen-gradle" version "3.21.4" // update only if starter updated jooq version + id "org.jooq.jooq-codegen-gradle" version "3.21.5" // update only if starter updated jooq version id 'org.liquibase.gradle' version '3.1.0' }