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.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask

plugins {
id("java")
id("com.github.ben-manes.versions") version "0.53.0"
id("com.github.ben-manes.versions") version "0.54.0"
id("info.solidsoft.pitest")
id("jacoco-report-aggregation")
}
Expand Down
6 changes: 3 additions & 3 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ repositories {
}

dependencies {
implementation("com.github.spotbugs.snom:spotbugs-gradle-plugin:6.4.8")
implementation("net.ltgt.gradle:gradle-errorprone-plugin:5.0.0")
implementation("info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.19.0-rc.3")
implementation("com.github.spotbugs.snom:spotbugs-gradle-plugin:6.5.1")
implementation("net.ltgt.gradle:gradle-errorprone-plugin:5.1.0")
implementation("info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.19.0")
implementation("org.gradle:test-retry-gradle-plugin:1.6.4")
implementation("io.freefair.gradle:lombok-plugin:9.2.0")
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies {
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")

errorprone("com.google.errorprone:error_prone_core:2.47.0")
errorprone("com.google.errorprone:error_prone_core:2.49.0")
errorprone("jp.skypencil.errorprone.slf4j:errorprone-slf4j:0.1.29")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
pitest {
verbosity = "DEFAULT"
junit5PluginVersion = "1.2.3"
pitestVersion = "1.22.1"
pitestVersion = "1.23.0"
threads = 4
outputFormats = setOf("XML", "HTML")
timestampedReports = false
Expand Down
2 changes: 1 addition & 1 deletion console-app-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ dependencies {

runtimeOnly("org.postgresql:postgresql")

testImplementation("org.testcontainers:postgresql")
testImplementation("org.testcontainers:testcontainers-postgresql")
}
2 changes: 1 addition & 1 deletion db-commons/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ dependencies {
implementation("org.slf4j:slf4j-api")

testImplementation("ch.qos.logback:logback-classic")
testImplementation("org.testcontainers:postgresql")
testImplementation("org.testcontainers:testcontainers-postgresql")
testImplementation("io.github.mfvanek:pg-index-health-testing")
}
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
spring-boot-v3 = "3.5.10"
spring-boot-v3 = "3.5.13"

[libraries]
spring-boot-v3-dependencies = { group = "org.springframework.boot", name = "spring-boot-dependencies", version.ref = "spring-boot-v3" }
Expand Down
4 changes: 2 additions & 2 deletions internal-bom/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ javaPlatform {

dependencies {
api(platform("org.junit:junit-bom:6.0.3"))
api(platform("org.testcontainers:testcontainers-bom:1.21.4"))
api(platform("io.github.mfvanek:pg-index-health-bom:0.30.2"))
api(platform("org.testcontainers:testcontainers-bom:2.0.5"))
api(platform("io.github.mfvanek:pg-index-health-bom:0.40.0"))
api(platform("org.mockito:mockito-bom:5.23.0"))
api(platform("org.assertj:assertj-bom:3.27.7"))

Expand Down
2 changes: 1 addition & 1 deletion mongo-db-reactive-app-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies {

testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("io.projectreactor:reactor-test")
testImplementation("org.testcontainers:mongodb")
testImplementation("org.testcontainers:testcontainers-mongodb")
testImplementation("org.assertj:assertj-core")

testRuntimeOnly("org.junit.platform:junit-platform-launcher")
Expand Down