Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove jcenter #450

Merged
merged 2 commits into from Nov 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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"
}