Skip to content
This repository has been archived by the owner on May 13, 2024. It is now read-only.

Update dependencies #151

Merged
merged 2 commits into from
Jan 27, 2024
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ Spring Boot Starter for using [pg-index-health](https://github.com/mfvanek/pg-in
Using Gradle:

```groovy
testImplementation 'io.github.mfvanek:pg-index-health-test-starter:0.10.2'
testImplementation 'io.github.mfvanek:pg-index-health-test-starter:0.10.3'
```

<details>
<summary>with Kotlin DSL</summary>

```kotlin
testImplementation("io.github.mfvanek:pg-index-health-test-starter:0.10.2")
testImplementation("io.github.mfvanek:pg-index-health-test-starter:0.10.3")
```

</details>
Expand All @@ -44,7 +44,7 @@ Using Maven:
<dependency>
<groupId>io.github.mfvanek</groupId>
<artifactId>pg-index-health-test-starter</artifactId>
<version>0.10.2</version>
<version>0.10.3</version>
<scope>test</scope>
</dependency>
```
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask

plugins {
id("org.sonarqube")
id("com.github.ben-manes.versions") version "0.50.0"
id("com.github.ben-manes.versions") version "0.51.0"
}

description = "pg-index-health-test-starter build"

allprojects {
group = "io.github.mfvanek"
version = "0.10.3"
version = "0.10.4-SNAPSHOT"

repositories {
mavenLocal()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ dependencies {

checkstyle("com.thomasjensen.checkstyle.addons:checkstyle-addons:7.0.1")

errorprone("com.google.errorprone:error_prone_core:2.24.0")
errorprone("jp.skypencil.errorprone.slf4j:errorprone-slf4j:0.1.21")
errorprone("com.google.errorprone:error_prone_core:2.24.1")
errorprone("jp.skypencil.errorprone.slf4j:errorprone-slf4j:0.1.22")

spotbugsPlugins("jp.skypencil.findbugs.slf4j:bug-pattern:1.5.0")
spotbugsPlugins("com.h3xstream.findsecbugs:findsecbugs-plugin:1.12.0")
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spring-boot-autoconfigure-processor = { group = "org.springframework.boot", name
spring-boot-configuration-processor = { group = "org.springframework.boot", name = "spring-boot-configuration-processor", version.ref = "spring-boot" }
spring-boot-starter-data-jdbc = { group = "org.springframework.boot", name = "spring-boot-starter-data-jdbc", version.ref = "spring-boot" }
database-postgresql = "org.postgresql:postgresql:42.7.1"
assertj-core = "org.assertj:assertj-core:3.25.1"
assertj-core = "org.assertj:assertj-core:3.25.2"
slf4j-simple = "org.slf4j:slf4j-simple:1.7.36" # to be compatible with Spring Boot 2.7.X
commons-lang3 = { group = "org.apache.commons", name = "commons-lang3", version.ref = "commons-lang3" }
pg-index-health-model = { group = "io.github.mfvanek", name = "pg-index-health-model", version.ref = "pg-index-health" }
Expand Down
2 changes: 1 addition & 1 deletion postgres-demo-app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
implementation("com.google.code.findbugs:jsr305:3.0.2")
implementation(libs.spring.boot.starter.data.jdbc)
implementation(libs.pg.index.health.testing)
implementation(platform("org.testcontainers:testcontainers-bom:1.19.3"))
implementation(platform("org.testcontainers:testcontainers-bom:1.19.4"))
implementation("org.testcontainers:postgresql")

runtimeOnly(libs.database.postgresql)
Expand Down