From 4081b76025ff8037eb4f350e4d23360bc3aa6f13 Mon Sep 17 00:00:00 2001 From: Yair Morgenstern Date: Wed, 6 Sep 2023 12:18:31 +0300 Subject: [PATCH] build: removed 'testImplementation' double-imports for tests project --- build.gradle.kts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index f41c689831..ea5c67aa1c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -166,13 +166,6 @@ project(":core") { "implementation"("com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop") "implementation"("com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion") "implementation"("com.badlogicgames.gdx:gdx:$gdxVersion") - - "testImplementation"("junit:junit:4.13.2") - "testImplementation"("org.mockito:mockito-core:5.1.1") - - "testImplementation"("com.badlogicgames.gdx:gdx-backend-headless:$gdxVersion") - "testImplementation"("com.badlogicgames.gdx:gdx:$gdxVersion") - "testImplementation"("com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop") } } }