Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,10 @@ apply plugin: 'opensearch.java'
repositories {
mavenLocal()
mavenCentral() // For Elastic Libs that you can use to get started coding until open OpenSearch libs are available
maven { url "https://central.sonatype.com/repository/maven-snapshots/" }
maven { url 'https://jitpack.io' }
maven {
url 'https://jitpack.io'
content { includeGroup "com.github.babbel" }
}
maven { url "https://ci.opensearch.org/ci/dbc/snapshots/maven/" }
}

Expand Down Expand Up @@ -159,10 +161,12 @@ subprojects {
repositories {
mavenLocal()
mavenCentral()
maven { url "https://central.sonatype.com/repository/maven-snapshots/" }
maven { url "https://d1nvenhzbhpy0q.cloudfront.net/snapshots/lucene/" }
maven { url 'https://jitpack.io' }
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/" }
}
}

Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 5 additions & 1 deletion integ-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,13 @@ String ignorePrometheusProp = System.getProperty("ignorePrometheus")
boolean ignorePrometheus = ignorePrometheusProp != null && !ignorePrometheusProp.equalsIgnoreCase("false")

repositories {
mavenLocal()
mavenCentral()
maven { url "https://ci.opensearch.org/ci/dbc/snapshots/maven/" }
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()) {
Expand Down
6 changes: 5 additions & 1 deletion plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,12 @@ ext {
}

repositories {
mavenLocal()
mavenCentral()
maven { url 'https://jitpack.io' }
maven {
url 'https://jitpack.io'
content { includeGroup "com.github.babbel" }
}
}

opensearchplugin {
Expand Down
Loading