Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
szysas committed Nov 7, 2023
1 parent e8a35d3 commit 40bb3f3
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 24 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ plugins {
id("maven-publish")
id("com.github.mfarsikov.kewt-versioning") version "1.0.0"
id("se.patrikerdes.use-latest-versions") version "0.2.18"
id("com.github.ben-manes.versions") version "0.48.0"
id("com.github.ben-manes.versions") version "0.49.0"
id("pmd")
id("com.github.spotbugs") version "5.1.3"
id("com.github.spotbugs") version "5.2.3"
id("org.gradle.signing")
id("io.github.gradle-nexus.publish-plugin") version "1.3.0"
id("com.adarshr.test-logger") version "3.2.0"
id("com.adarshr.test-logger") version "4.0.0"
}

allprojects {
Expand Down
4 changes: 2 additions & 2 deletions coap-cli/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ dependencies {
implementation("info.picocli:picocli:4.7.5")

testImplementation("org.mockito:mockito-core:4.11.0")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.0")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.1")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.1")
testImplementation("org.awaitility:awaitility:4.2.0")
testImplementation(testFixtures(project(":coap-core")))
}
Expand Down
6 changes: 3 additions & 3 deletions coap-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ description = "coap-core"
dependencies {
api("org.slf4j:slf4j-api:2.0.9")

testFixturesApi("org.junit.jupiter:junit-jupiter-api:5.10.0")
testFixturesApi("org.junit.jupiter:junit-jupiter-api:5.10.1")
testFixturesApi("org.assertj:assertj-core:3.24.2")
testFixturesApi("org.awaitility:awaitility:4.2.0")

testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.1")
testImplementation("ch.qos.logback:logback-classic:1.3.5")
testImplementation("org.mockito:mockito-core:4.11.0")
testImplementation("nl.jqno.equalsverifier:equalsverifier:3.15.2")
testImplementation("nl.jqno.equalsverifier:equalsverifier:3.15.3")
testImplementation("io.github.artsok:rerunner-jupiter:2.1.6")
}

Expand Down
4 changes: 2 additions & 2 deletions coap-mbedtls/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies {
testImplementation("io.github.open-coap:kotlin-mbedtls-netty:1.19.1")

testImplementation(testFixtures(project(":coap-core")))
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.0")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.1")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.1")
testImplementation("ch.qos.logback:logback-classic:1.3.5")
}
6 changes: 3 additions & 3 deletions coap-metrics/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ description = "coap-metrics"
dependencies {
api(project(":coap-core"))

implementation("io.micrometer:micrometer-core:1.11.4")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.0")
implementation("io.micrometer:micrometer-core:1.11.5")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.1")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.1")
testImplementation(testFixtures(project(":coap-core")))
}
8 changes: 4 additions & 4 deletions coap-netty/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ description = "coap-netty"

dependencies {
api(project(":coap-core"))
api("io.netty:netty-handler:4.1.99.Final")
api("io.netty:netty-handler:4.1.100.Final")

testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.0")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.1")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.1")

testImplementation(testFixtures(project(":coap-core")))
testImplementation("ch.qos.logback:logback-classic:1.3.5")

jmhImplementation("io.netty:netty-all:4.1.99.Final")
jmhImplementation("io.netty:netty-all:4.1.100.Final")
}

tasks {
Expand Down
6 changes: 3 additions & 3 deletions coap-tcp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ dependencies {

testImplementation(testFixtures(project(":coap-core")))

testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.0")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.1")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.1")
testImplementation("ch.qos.logback:logback-classic:1.3.5")
testImplementation("org.mockito:mockito-core:4.11.0")
testImplementation("org.assertj:assertj-core:3.24.2")
testImplementation("nl.jqno.equalsverifier:equalsverifier:3.15.2")
testImplementation("nl.jqno.equalsverifier:equalsverifier:3.15.3")
testImplementation("org.awaitility:awaitility:4.2.0")
}
8 changes: 4 additions & 4 deletions lwm2m/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ dependencies {
api("com.google.code.gson:gson:2.10.1")
api("org.slf4j:slf4j-api:2.0.9")

testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.0")
testImplementation("commons-io:commons-io:2.14.0")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.1")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.1")
testImplementation("commons-io:commons-io:2.15.0")
testImplementation("ch.qos.logback:logback-classic:1.3.5")
testImplementation("org.mockito:mockito-core:4.11.0")
testImplementation("org.hamcrest:hamcrest-all:1.3")
testImplementation("nl.jqno.equalsverifier:equalsverifier:3.15.2")
testImplementation("nl.jqno.equalsverifier:equalsverifier:3.15.3")
}

0 comments on commit 40bb3f3

Please sign in to comment.