From c27a0eca7bf658ce7455931897aa8f65bf881a8a Mon Sep 17 00:00:00 2001 From: Danilo Pianini Date: Thu, 2 Jun 2022 22:41:50 +0200 Subject: [PATCH] chore(deps): drop unused test library (mockito) --- gradle/libs.versions.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index e46491ca..f716a4d6 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -2,17 +2,15 @@ dokka = "1.6.21" kotest = "5.3.0" kotlin = "1.6.21" -mockito = "4.6.1" nexus-publish = "1.1.0" [libraries] kotest-junit5-jvm = { module = "io.kotest:kotest-runner-junit5-jvm", version.ref = "kotest" } kotest-assertions-core-jvm = { module = "io.kotest:kotest-assertions-core-jvm", version.ref = "kotest" } -mockito-core = { module = "org.mockito:mockito-core", version.ref = "mockito" } nexus-publish = { module = "io.github.gradle-nexus:publish-plugin", version.ref = "nexus-publish" } [bundles] -kotlin-testing = [ "kotest-junit5-jvm", "kotest-assertions-core-jvm", "mockito-core" ] +kotlin-testing = [ "kotest-junit5-jvm", "kotest-assertions-core-jvm" ] [plugins] dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" }