diff --git a/README.md b/README.md index 20b1108e..32678c7a 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ A small library that provides helper functions to work with [Mockito](https://gi ## Install -Mockito-Kotlin is available on Maven Central and JCenter. +Mockito-Kotlin is available on Maven Central. For Gradle users, add the following to your `build.gradle`, replacing `x.x.x` with the latest version: ```groovy diff --git a/mockito-kotlin/build.gradle b/mockito-kotlin/build.gradle index 786e3346..8c089e00 100644 --- a/mockito-kotlin/build.gradle +++ b/mockito-kotlin/build.gradle @@ -7,7 +7,6 @@ buildscript { repositories { mavenCentral() - jcenter() } dependencies { @@ -18,7 +17,6 @@ buildscript { repositories { mavenCentral() - jcenter() } dependencies { @@ -28,7 +26,7 @@ dependencies { compile "org.mockito:mockito-core:4.0.0" testCompile 'junit:junit:4.12' - testCompile 'com.nhaarman:expect.kt:1.0.0' + testCompile 'com.nhaarman:expect.kt:1.0.1' testCompile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version" diff --git a/tests/build.gradle b/tests/build.gradle index f263cb4f..c40c2e31 100644 --- a/tests/build.gradle +++ b/tests/build.gradle @@ -15,7 +15,6 @@ apply plugin: 'kotlin' repositories { mavenCentral() - jcenter() } dependencies { @@ -25,5 +24,5 @@ dependencies { compile "org.mockito:mockito-core:4.0.0" testCompile "junit:junit:4.12" - testCompile "com.nhaarman:expect.kt:1.0.0" + testCompile "com.nhaarman:expect.kt:1.0.1" } \ No newline at end of file