Skip to content

Commit 7a220c8

Browse files
committed
fix: merge conflict
2 parents 345caaf + fb83ed6 commit 7a220c8

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

buildSrc/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ repositories {
3030
}
3131

3232
dependencies {
33-
implementation("com.diffplug.spotless:spotless-plugin-gradle:6.6.1")
33+
implementation("com.diffplug.spotless:spotless-plugin-gradle:6.7.2")
3434
implementation("org.jetbrains.dokka:dokka-gradle-plugin:1.6.21")
3535
implementation(kotlin("gradle-plugin", version = "1.6.21"))
3636
implementation(kotlin("serialization", version = "1.6.21"))
3737
implementation("io.kotest:kotest-gradle-plugin:0.3.9")
38-
implementation("dev.floofy.commons:gradle:2.1.0.1")
38+
implementation("dev.floofy.commons:gradle:2.1.1")
3939
implementation(gradleApi())
4040
}

buildSrc/src/main/kotlin/remi-module.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,24 +42,24 @@ dependencies {
4242
api(platform("org.jetbrains.kotlinx:kotlinx-serialization-bom:1.3.3"))
4343

4444
// kotlinx.coroutines support
45-
api(platform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.6.1"))
45+
api(platform("org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.6.3"))
4646
api("org.jetbrains.kotlinx:kotlinx-coroutines-core")
4747
api("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8")
4848

4949
// noel utils
50-
implementation("dev.floofy.commons:slf4j:2.1.0.1")
50+
implementation("dev.floofy.commons:slf4j:2.1.1")
5151

5252
// SLF4J for logging
5353
api("org.slf4j:slf4j-api:1.7.36")
5454

5555
// testing utilities
56-
testImplementation(platform("io.kotest:kotest-bom:5.3.0"))
56+
testImplementation(platform("io.kotest:kotest-bom:5.3.2"))
5757
testImplementation("io.kotest:kotest-runner-junit5")
5858
testImplementation("io.kotest:kotest-assertions-core")
5959
testImplementation("io.kotest:kotest-property")
6060

6161
// Tika (for content type checking)
62-
implementation("org.apache.tika:tika-core:2.4.0")
62+
implementation("org.apache.tika:tika-core:2.4.1")
6363

6464
if (name.startsWith("support-")) {
6565
implementation(project(":core"))

core/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ plugins {
2323
}
2424

2525
dependencies {
26-
api("org.jetbrains.kotlinx:kotlinx-datetime:0.3.2")
26+
api("org.jetbrains.kotlinx:kotlinx-datetime:0.4.0")
2727
}

support-gcs/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ plugins {
2323
}
2424

2525
dependencies {
26-
implementation("com.google.cloud:google-cloud-storage:2.6.1")
26+
implementation("com.google.cloud:google-cloud-storage:2.9.0")
2727
}

support-minio/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ plugins {
2323
}
2424

2525
dependencies {
26-
api("io.minio:minio:8.4.1")
26+
api("io.minio:minio:8.4.2")
2727
}

support-s3/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ plugins {
2323
}
2424

2525
dependencies {
26-
api("software.amazon.awssdk:s3:2.17.196")
26+
api("software.amazon.awssdk:s3:2.17.224")
2727

2828
testApi("org.slf4j:slf4j-api:1.7.36")
2929
testImplementation("org.slf4j:slf4j-simple:1.7.36")
30-
testImplementation("dev.floofy.commons:slf4j:2.1.0.1")
31-
testImplementation("org.testcontainers:testcontainers:1.17.2")
30+
testImplementation("dev.floofy.commons:slf4j:2.1.1")
31+
testImplementation("org.testcontainers:testcontainers:1.17.3")
3232
}

0 commit comments

Comments
 (0)