Skip to content

Commit

Permalink
Replace JCenter with Maven Central
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalcolea committed Mar 18, 2021
1 parent 85ce074 commit 0d4d0b5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
repositories {
jcenter()
mavenCentral()
}
}

Expand All @@ -15,7 +15,7 @@ subprojects {
group = "com.netflix.evcache"

repositories {
jcenter()
mavenCentral()
}

sourceCompatibility = 1.8
Expand Down
5 changes: 2 additions & 3 deletions evcache-client-sample/build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
apply plugin: 'java'

repositories {
jcenter()
mavenLocal()
mavenCentral()
mavenCentral()
mavenLocal()
}

configurations.all {
Expand Down
3 changes: 1 addition & 2 deletions evcache-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ sourceSets.test.java.srcDir 'src/test/java'

repositories {
mavenLocal()
jcenter()
mavenCentral() // maven { url 'http://jcenter.bintray.com' }
mavenCentral()
}

test {
Expand Down
2 changes: 1 addition & 1 deletion evcache-zipkin-tracing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sourceSets.test.java.srcDir 'src/test/java'

repositories {
mavenLocal()
mavenCentral() // maven { url 'http://jcenter.bintray.com' }
mavenCentral()
}

dependencies {
Expand Down

0 comments on commit 0d4d0b5

Please sign in to comment.