Skip to content

Commit

Permalink
Replace JCenter with Maven Central.
Browse files Browse the repository at this point in the history
Replace with Maven Central as per the Gradle recommendation - https://blog.gradle.org/jcenter-shutdown

Signed-off-by: Rabi Panda <[email protected]>
  • Loading branch information
adnapibar committed Aug 6, 2021
1 parent dcd9cef commit ff06789
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ tasks.withType(JavaCompile).configureEach {
*****************************************************************************/

repositories {
jcenter()
mavenCentral()
gradlePluginPortal()
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class OpenSearchTestBasePluginFuncTest extends AbstractGradleFuncTest {
}
repositories {
jcenter()
mavenCentral()
}
dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public static void configureRepositories(Project project) {
// such that we don't have to pass hardcoded files to gradle
repos.mavenLocal();
}
repos.jcenter();
repos.mavenCentral();

String luceneVersion = VersionProperties.getLucene();
if (luceneVersion.contains("-snapshot")) {
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/testKit/opensearch.build/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ repositories {
artifact()
}
}
jcenter()
mavenCentral()
}

repositories {
Expand All @@ -53,7 +53,7 @@ repositories {
artifact()
}
}
jcenter()
mavenCentral()
}

// todo remove offending rules
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/testKit/testingConventions/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ allprojects {
apply plugin: 'opensearch.build'

repositories {
jcenter()
mavenCentral()
}
dependencies {
testImplementation "junit:junit:4.13.1"
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/testKit/thirdPartyAudit/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ repositories {
artifact()
}
}
jcenter()
mavenCentral()
}

dependencies {
Expand Down

0 comments on commit ff06789

Please sign in to comment.