Skip to content

Commit 17249bf

Browse files
authored
Remove jcenter (#450)
Also upgrade expect.kt with the contents of MavenCentral.
1 parent 9208417 commit 17249bf

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A small library that provides helper functions to work with [Mockito](https://gi
66

77
## Install
88

9-
Mockito-Kotlin is available on Maven Central and JCenter.
9+
Mockito-Kotlin is available on Maven Central.
1010
For Gradle users, add the following to your `build.gradle`, replacing `x.x.x` with the latest version:
1111

1212
```groovy

mockito-kotlin/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ buildscript {
77

88
repositories {
99
mavenCentral()
10-
jcenter()
1110
}
1211

1312
dependencies {
@@ -18,7 +17,6 @@ buildscript {
1817

1918
repositories {
2019
mavenCentral()
21-
jcenter()
2220
}
2321

2422
dependencies {
@@ -28,7 +26,7 @@ dependencies {
2826
compile "org.mockito:mockito-core:4.0.0"
2927

3028
testCompile 'junit:junit:4.12'
31-
testCompile 'com.nhaarman:expect.kt:1.0.0'
29+
testCompile 'com.nhaarman:expect.kt:1.0.1'
3230

3331
testCompile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
3432
testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"

tests/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ apply plugin: 'kotlin'
1515

1616
repositories {
1717
mavenCentral()
18-
jcenter()
1918
}
2019

2120
dependencies {
@@ -25,5 +24,5 @@ dependencies {
2524
compile "org.mockito:mockito-core:4.0.0"
2625

2726
testCompile "junit:junit:4.12"
28-
testCompile "com.nhaarman:expect.kt:1.0.0"
27+
testCompile "com.nhaarman:expect.kt:1.0.1"
2928
}

0 commit comments

Comments
 (0)