Skip to content

Commit dc4ae17

Browse files
committed
Update dependencies
1 parent bfd3b76 commit dc4ae17

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

buildSrc/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies {
2727
implementation("io.github.gradle-nexus:publish-plugin:1.1.0")
2828
implementation("net.researchgate:gradle-release:2.8.1")
2929
implementation("com.github.dpaukov:combinatoricslib3:3.3.3")
30-
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.20-RC2")
30+
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.20")
3131
implementation("me.champeau.jmh:jmh-gradle-plugin:0.6.6")
3232
implementation("se.bjurr.gitchangelog:git-changelog-gradle-plugin:1.71.9") {
3333
isTransitive = false

buildSrc/src/main/kotlin/io.github.nstdio.http.ext.benchmark-conventions.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ plugins {
1818
id("me.champeau.jmh")
1919
}
2020

21+
val jmhVersion = "1.35"
22+
23+
dependencies {
24+
jmh ("org.openjdk.jmh:jmh-core:$jmhVersion")
25+
jmh ("org.openjdk.jmh:jmh-generator-annprocess:$jmhVersion")
26+
}
27+
2128
jmh {
2229
includeTests.set(false)
2330
}

buildSrc/src/main/kotlin/io.github.nstdio.http.ext.test-conventions.gradle.kts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ tasks.withType<Test> {
7272

7373
val junitVersion = "5.8.2"
7474
val assertJVersion = "3.22.0"
75-
val kotestAssertionsVersion = "5.2.2"
75+
val kotestAssertionsVersion = "5.2.3"
7676
val mockitoVersion = "4.4.0"
7777
val jsonPathAssertVersion = "2.7.0"
7878
val slf4jVersion = "1.7.36"
79-
val jacksonVersion = "2.13.2"
80-
val brotli4JVersion = "1.6.0"
79+
val jacksonVersion = "2.13.2.2"
80+
val brotli4JVersion = "1.7.1"
8181
val brotliOrgVersion = "0.1.2"
8282
val gsonVersion = "2.9.0"
8383

@@ -90,7 +90,6 @@ val spiDeps = listOf(
9090
"org.brotli:dec:$brotliOrgVersion",
9191
"com.aayushatharva.brotli4j:brotli4j:$brotli4JVersion",
9292
"com.google.code.gson:gson:$gsonVersion",
93-
"javax.json.bind:javax.json.bind-api:1.0",
9493
"com.fasterxml.jackson.core:jackson-databind:$jacksonVersion"
9594
)
9695

@@ -113,7 +112,7 @@ dependencies {
113112
testImplementation("org.awaitility:awaitility:4.2.0")
114113

115114
testImplementation("nl.jqno.equalsverifier:equalsverifier:3.10")
116-
testImplementation("com.github.tomakehurst:wiremock-jre8:2.32.0")
115+
testImplementation("com.github.tomakehurst:wiremock-jre8:2.33.1")
117116
testImplementation("com.tngtech.archunit:archunit-junit5:0.23.1")
118117

119118
spiDeps.forEach { spiTestImplementation(it) }

0 commit comments

Comments
 (0)