Skip to content
Closed
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.0"
springCloudDependencies = "org.springframework.cloud:spring-cloud-dependencies:2025.1.1"
}

//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.1'
implementation 'org.springframework.boot:spring-boot-gradle-plugin:4.0.2'
implementation 'io.spring.gradle:dependency-management-plugin:1.1.7'
implementation 'com.diffplug.spotless:spotless-lib:4.1.0'
implementation 'com.diffplug.spotless:spotless-plugin-gradle:8.1.0'
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'
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
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.2.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
33 changes: 18 additions & 15 deletions gradlew

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

185 changes: 93 additions & 92 deletions gradlew.bat
100644 → 100755

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

4 changes: 2 additions & 2 deletions telegram_chat_service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
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("org.testcontainers:testcontainers-postgresql:2.0.3")
classpath("org.postgresql:postgresql:42.7.8")
classpath("org.postgresql:postgresql:42.7.9")
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.20.11" // update only if starter updated jooq version
id 'org.liquibase.gradle' version '3.1.0'
}

Expand Down
Loading