diff --git a/build.gradle b/build.gradle index 25e016b584a..904569c4918 100644 --- a/build.gradle +++ b/build.gradle @@ -92,8 +92,11 @@ apply plugin: 'opensearch.java-agent' repositories { mavenLocal() mavenCentral() // For Elastic Libs that you can use to get started coding until open OpenSearch libs are available + maven { + url 'https://jitpack.io' + content { includeGroup "com.github.babbel" } + } maven { url "https://ci.opensearch.org/ci/dbc/snapshots/maven/" } - maven { url 'https://jitpack.io' } } spotless { @@ -156,9 +159,12 @@ subprojects { repositories { mavenLocal() mavenCentral() + maven { + url 'https://jitpack.io' + content { includeGroup "com.github.babbel" } + } maven { url "https://ci.opensearch.org/ci/dbc/snapshots/maven/" } maven { url "https://ci.opensearch.org/ci/dbc/snapshots/lucene/" } - maven { url 'https://jitpack.io' } } } diff --git a/gradle.properties b/gradle.properties index cca553e80bf..d95eee2f1a1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,3 +5,4 @@ version=1.13.0 org.gradle.jvmargs=-Duser.language=en -Duser.country=US org.gradle.parallel=true +org.gradle.caching=true diff --git a/integ-test/build.gradle b/integ-test/build.gradle index 8be26b22545..df9bea228ce 100644 --- a/integ-test/build.gradle +++ b/integ-test/build.gradle @@ -57,8 +57,12 @@ String ignorePrometheusProp = System.getProperty("ignorePrometheus") boolean ignorePrometheus = ignorePrometheusProp != null && !ignorePrometheusProp.equalsIgnoreCase("false") repositories { + mavenLocal() mavenCentral() - maven { url 'https://jitpack.io' } + maven { + url 'https://jitpack.io' + content { includeGroup "com.github.babbel" } + } // Add extra repository for the JDBC driver if given by user if (System.getProperty("jdbcRepo") != null && new File(System.getProperty("jdbcRepo")).isDirectory()) { diff --git a/plugin/build.gradle b/plugin/build.gradle index c6d05e934fa..6d80972edd3 100644 --- a/plugin/build.gradle +++ b/plugin/build.gradle @@ -44,8 +44,12 @@ ext { } repositories { + mavenLocal() mavenCentral() - maven { url 'https://jitpack.io' } + maven { + url 'https://jitpack.io' + content { includeGroup "com.github.babbel" } + } } opensearchplugin {