Skip to content

Commit

Permalink
Replace jcenter with mavenCentral in all examples (#4931)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiview committed Jan 17, 2022
1 parent 19b58cd commit 04937b5
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion examples/build.gradle
Expand Up @@ -5,6 +5,6 @@ subprojects {
apply plugin:"java"

repositories {
jcenter()
mavenCentral()
}
}
2 changes: 1 addition & 1 deletion examples/cucumber/build.gradle
Expand Up @@ -3,7 +3,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion examples/disque-job-queue/build.gradle
Expand Up @@ -3,7 +3,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion examples/kafka-cluster/build.gradle
Expand Up @@ -3,7 +3,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion examples/linked-container/build.gradle
Expand Up @@ -3,7 +3,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}
dependencies {
compileOnly 'org.slf4j:slf4j-api:1.7.32'
Expand Down
2 changes: 1 addition & 1 deletion examples/mongodb-container/build.gradle
Expand Up @@ -3,7 +3,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion examples/redis-backed-cache-testng/build.gradle
Expand Up @@ -3,7 +3,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion examples/redis-backed-cache/build.gradle
Expand Up @@ -3,7 +3,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion examples/selenium-container/build.gradle
Expand Up @@ -5,7 +5,7 @@ plugins {
apply plugin: 'io.spring.dependency-management'

repositories {
jcenter()
mavenCentral()
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion examples/singleton-container/build.gradle
Expand Up @@ -3,7 +3,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion examples/solr-container/build.gradle
Expand Up @@ -3,7 +3,7 @@ plugins {
}

repositories {
jcenter()
mavenCentral()
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion examples/spring-boot/build.gradle
Expand Up @@ -5,7 +5,7 @@ plugins {
apply plugin: 'io.spring.dependency-management'

repositories {
jcenter()
mavenCentral()
}

dependencies {
Expand Down

0 comments on commit 04937b5

Please sign in to comment.