summaryrefslogtreecommitdiff
path: root/buildSrc/src/main/kotlin/testing-conventions.gradle.kts
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/main/kotlin/testing-conventions.gradle.kts
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/main/kotlin/testing-conventions.gradle.kts')
-rw-r--r--buildSrc/src/main/kotlin/testing-conventions.gradle.kts6
1 files changed, 3 insertions, 3 deletions
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"])
}