Skip to content

Commit

Permalink
Remove jcenter (#450)
Browse files Browse the repository at this point in the history
Also upgrade expect.kt with the contents of MavenCentral.
  • Loading branch information
k163377 committed Nov 17, 2021
1 parent 9208417 commit 17249bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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
Expand Down
4 changes: 1 addition & 3 deletions mockito-kotlin/build.gradle
Expand Up @@ -7,7 +7,6 @@ buildscript {

repositories {
mavenCentral()
jcenter()
}

dependencies {
Expand All @@ -18,7 +17,6 @@ buildscript {

repositories {
mavenCentral()
jcenter()
}

dependencies {
Expand All @@ -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"
Expand Down
3 changes: 1 addition & 2 deletions tests/build.gradle
Expand Up @@ -15,7 +15,6 @@ apply plugin: 'kotlin'

repositories {
mavenCentral()
jcenter()
}

dependencies {
Expand All @@ -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"
}

0 comments on commit 17249bf

Please sign in to comment.