diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle index 00310ffc..08825482 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.3' + implementation 'org.springframework.boot:spring-boot-gradle-plugin:4.0.5' implementation 'io.spring.gradle:dependency-management-plugin:1.1.7' - implementation 'com.diffplug.spotless:spotless-lib:4.3.0' - implementation 'com.diffplug.spotless:spotless-plugin-gradle:8.2.1' + implementation 'com.diffplug.spotless:spotless-lib:4.5.0' + implementation 'com.diffplug.spotless:spotless-plugin-gradle:8.4.0' runtimeOnly 'com.google.protobuf:protobuf-gradle-plugin:0.9.6' } \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 61285a65..d997cfc6 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 78dfb562..5b59ea8e 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.3.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip networkTimeout=10000 zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew index adff685a..739907df 100755 --- a/gradlew +++ b/gradlew @@ -57,7 +57,7 @@ # Darwin, MinGW, and NonStop. # # (3) This script is generated from the Groovy template -# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# https://github.com/gradle/gradle/blob/2d6327017519d23b96af35865dc997fcb544fb40/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt # within the Gradle project. # # You can find Gradle at https://github.com/gradle/gradle/. diff --git a/telegram_bot/build.gradle b/telegram_bot/build.gradle index 43a5ff10..cc46917f 100644 --- a/telegram_bot/build.gradle +++ b/telegram_bot/build.gradle @@ -28,13 +28,13 @@ dependencies { // bot - doesn't work with eureka client // adds core bot functionality - implementation('org.telegram:telegrambots-longpolling:9.4.0') { + implementation('org.telegram:telegrambots-longpolling:9.5.0') { exclude group: 'org.glassfish.jersey.containers' exclude group: 'org.glassfish.jersey.core' exclude group: 'org.glassfish.jersey.inject' exclude group: 'org.glassfish.jersey.media' } - implementation('org.telegram:telegrambots-client:9.4.0') // adds client to communicate with telegram api + implementation('org.telegram:telegrambots-client:9.5.0') // adds client to communicate with telegram api // freemarker implementation 'org.springframework.boot:spring-boot-starter-freemarker' diff --git a/telegram_chat_service/build.gradle b/telegram_chat_service/build.gradle index 6b4fe898..f0c904d3 100644 --- a/telegram_chat_service/build.gradle +++ b/telegram_chat_service/build.gradle @@ -4,10 +4,10 @@ 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("org.testcontainers:testcontainers-postgresql:2.0.3") + classpath("org.testcontainers:testcontainers-postgresql:2.0.4") classpath("org.postgresql:postgresql:42.7.10") classpath("org.liquibase:liquibase-gradle-plugin:3.0.2") - classpath('org.liquibase:liquibase-core:5.0.1') + classpath('org.liquibase:liquibase-core:5.0.2') } } @@ -19,7 +19,7 @@ plugins { id 'spring-web-conventions' id 'lombok-conventions' id "io.github.ximtech.jasypt-encrypt-plugin" version "1.3.3" - id "org.jooq.jooq-codegen-gradle" version "3.19.30" // update only if starter updated jooq version + id "org.jooq.jooq-codegen-gradle" version "3.21.1" // update only if starter updated jooq version id 'org.liquibase.gradle' version '3.1.0' }