diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle index a81d4601..00310ffc 100644 --- a/buildSrc/build.gradle +++ b/buildSrc/build.gradle @@ -10,7 +10,7 @@ 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.2' + implementation 'org.springframework.boot:spring-boot-gradle-plugin:4.0.3' 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' diff --git a/telegram_bot/build.gradle b/telegram_bot/build.gradle index 2c215ac2..43a5ff10 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.3.0') { + implementation('org.telegram:telegrambots-longpolling:9.4.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.3.0') // adds client to communicate with telegram api + implementation('org.telegram:telegrambots-client:9.4.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 586d00b5..6b4fe898 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.29.jar') // update only if starter updated it + 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.postgresql:postgresql:42.7.9") + classpath("org.postgresql:postgresql:42.7.10") classpath("org.liquibase:liquibase-gradle-plugin:3.0.2") classpath('org.liquibase:liquibase-core:5.0.1') } @@ -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.29" // update only if starter updated jooq version + id "org.jooq.jooq-codegen-gradle" version "3.19.30" // update only if starter updated jooq version id 'org.liquibase.gradle' version '3.1.0' } @@ -229,7 +229,7 @@ dependencies { implementation 'org.springframework.boot:spring-boot-starter-liquibase' testImplementation 'org.springframework.boot:spring-boot-starter-liquibase-test' // liquibaseRuntime "org.liquibase:liquibase-core:5.0.1" - liquibaseRuntime "org.yaml:snakeyaml:2.5" + liquibaseRuntime "org.yaml:snakeyaml:2.6" // liquibaseRuntime 'info.picocli:picocli:4.6.1' // necessary to run command line AND used ONLY in liquibase plugin tasks compileOnly 'org.liquibase:liquibase-gradle-plugin:3.0.2'