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
10 changes: 8 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this mean only downloading "com.github.babbel" from source 'https://jitpack.io'?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes

}
maven { url "https://ci.opensearch.org/ci/dbc/snapshots/maven/" }
maven { url 'https://jitpack.io' }
}

spotless {
Expand Down Expand Up @@ -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' }
}
}

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 @@ -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()) {
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