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 build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 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.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'
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions gradlew

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

4 changes: 2 additions & 2 deletions gradlew.bat

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

6 changes: 3 additions & 3 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.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')
}
Expand All @@ -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'
}

Expand Down
Loading