Skip to content

Commit

Permalink
fix: Replace JCenter repository with Maven Central
Browse files Browse the repository at this point in the history
The trove4j dependency has been republished to Maven Central:
https://search.maven.org/artifact/org.jetbrains.trove4j/trove4j/20160824/jar

Fixes spotbugs#418
  • Loading branch information
joschi committed Apr 26, 2021
1 parent 3e27e36 commit 59d3026
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repositories {
// To download the Android Gradle Plugin
google()
// To download trove4j required by the Android Gradle Plugin
jcenter()
mavenCentral()
}

ext {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ class AndroidFunctionalTest extends Specification {
buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
Expand All @@ -178,7 +178,7 @@ apply plugin: 'com.github.spotbugs'
repositories {
google()
jcenter()
mavenCentral()
}
android {
Expand All @@ -199,7 +199,7 @@ android {
buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
Expand All @@ -219,7 +219,7 @@ apply plugin: 'com.github.spotbugs'
repositories {
google()
jcenter()
mavenCentral()
}
android {
Expand Down

0 comments on commit 59d3026

Please sign in to comment.