Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions telegram_bot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
8 changes: 4 additions & 4 deletions telegram_chat_service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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')
}
Expand All @@ -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'
}

Expand Down Expand Up @@ -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'
Expand Down
Loading