summaryrefslogtreecommitdiff
path: root/buildSrc/src
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2021-09-02 12:58:19 +0200
committerGitHub <noreply@github.com>2021-09-02 12:58:19 +0200
commit67fb9de33fc0ab5289770b23210401948f63e5c3 (patch)
tree23557c2fc4752377d0588e523986154df329e7ed /buildSrc/src
parent05f80bd9fb7caf765e3ebbb70d48d0d5e185bd42 (diff)
build: Update to Gradle 7.2
This change updates the Gradle version of the supplied Gradle wrapper to version 7.2. * Update Gradle to version 7.2 * Address incompatibilities with version catalog * Remove opendc-format module.
Diffstat (limited to 'buildSrc/src')
-rw-r--r--buildSrc/src/main/kotlin/benchmark-conventions.gradle.kts4
-rw-r--r--buildSrc/src/main/kotlin/testing-conventions.gradle.kts6
2 files changed, 5 insertions, 5 deletions
diff --git a/buildSrc/src/main/kotlin/benchmark-conventions.gradle.kts b/buildSrc/src/main/kotlin/benchmark-conventions.gradle.kts
index 78ed5d1f..590f51cf 100644
--- a/buildSrc/src/main/kotlin/benchmark-conventions.gradle.kts
+++ b/buildSrc/src/main/kotlin/benchmark-conventions.gradle.kts
@@ -50,14 +50,14 @@ benchmark {
targets {
register("jmh") {
this as JvmBenchmarkTarget
- jmhVersion = "1.32"
+ jmhVersion = "1.33"
}
}
}
dependencies {
val libs = Libs(project)
- implementation(libs["kotlinx-benchmark-runtime-jvm"])
+ implementation(libs["kotlinx.benchmark.runtime.jvm"])
}
// Workaround for https://github.com/Kotlin/kotlinx-benchmark/issues/39
diff --git a/buildSrc/src/main/kotlin/testing-conventions.gradle.kts b/buildSrc/src/main/kotlin/testing-conventions.gradle.kts
index bceb9e00..ebeb58a4 100644
--- a/buildSrc/src/main/kotlin/testing-conventions.gradle.kts
+++ b/buildSrc/src/main/kotlin/testing-conventions.gradle.kts
@@ -36,8 +36,8 @@ tasks.test {
dependencies {
val libs = Libs(project)
- testImplementation(libs["junit-jupiter-api"])
- testImplementation(libs["junit-jupiter-params"])
+ testImplementation(libs["junit.jupiter.api"])
+ testImplementation(libs["junit.jupiter.params"])
testImplementation(libs["mockk"])
- testRuntimeOnly(libs["junit-jupiter-engine"])
+ testRuntimeOnly(libs["junit.jupiter.engine"])
}