Skip to content
Open
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
8 changes: 4 additions & 4 deletions buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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.6'
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'
runtimeOnly 'com.google.protobuf:protobuf-gradle-plugin:0.9.6'
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.10.0'
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 3 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
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.5.0-bin.zip
networkTimeout=10000
retries=0
retryBackOffMs=500
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

31 changes: 10 additions & 21 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion subscriptions_holder/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ plugins {
id 'spring-web-conventions'
id 'spring-feign-conventions'
id 'lombok-conventions'
id "io.github.ximtech.jasypt-encrypt-plugin" version "1.3.3"
id "io.github.ximtech.jasypt-encrypt-plugin" version "1.4.1"
}

apply plugin: JasyptPlugin
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.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'
Expand Down
10 changes: 5 additions & 5 deletions telegram_chat_service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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.postgresql:postgresql:42.7.10")
classpath("org.testcontainers:testcontainers-postgresql:2.0.5")
classpath("org.postgresql:postgresql:42.7.11")
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')
}
}

Expand All @@ -18,8 +18,8 @@ plugins {
id 'loki-conventions'
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 "io.github.ximtech.jasypt-encrypt-plugin" version "1.4.1"
id "org.jooq.jooq-codegen-gradle" version "3.21.2" // update only if starter updated jooq version
id 'org.liquibase.gradle' version '3.1.0'
}

Expand Down
Loading