From 6ab9c1d737898609516efb2c18578f837e54e009 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20Pich?= Date: Thu, 3 Oct 2019 22:47:49 +0200 Subject: [PATCH] Update mockito to last version from maven central (#546) --- app/build.gradle | 11 ++--------- build.gradle | 2 -- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index d6bd32a7..25a1cecf 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -116,7 +116,6 @@ ext { dagger = "2.24" chucker = "2.0.4" mockk = "1.9.2" - mockito_core = "3.0.11" } configurations.all { @@ -189,10 +188,7 @@ dependencies { testImplementation "junit:junit:4.12" testImplementation "io.mockk:mockk:$mockk" testImplementation "org.threeten:threetenbp:1.4.0" - testImplementation "org.mockito:mockito-core:$mockito_core" - testImplementation("org.mockito:mockito-inline:3.0.11") { - exclude group: "org.mockito", module: "mockito-core" - } + testImplementation "org.mockito:mockito-inline:3.1.0" androidTestImplementation "androidx.test:core:1.2.0" androidTestImplementation "androidx.test:runner:1.2.0" @@ -200,10 +196,7 @@ dependencies { androidTestImplementation "io.mockk:mockk-android:$mockk" androidTestImplementation "androidx.room:room-testing:$room" androidTestImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version" - androidTestImplementation "org.mockito:mockito-core:$mockito_core" - androidTestImplementation("org.mockito:mockito-android:3.0.11") { - exclude group: 'org.mockito', module: 'mockito-core' - } + androidTestImplementation "org.mockito:mockito-android:3.1.0" } apply plugin: 'com.google.gms.google-services' diff --git a/build.gradle b/build.gradle index de82b17a..c3abf9ad 100644 --- a/build.gradle +++ b/build.gradle @@ -35,8 +35,6 @@ allprojects { google() jcenter() maven { url 'https://jitpack.io' } - maven { url "https://kotlin.bintray.com/kotlinx/" } - maven { url "https://dl.bintray.com/mockito/maven" } } }