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
1 change: 1 addition & 0 deletions async-query-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ plugins {
}

repositories {
maven { url "https://ci.opensearch.org/maven2/" }
mavenCentral()
}

Expand Down
1 change: 1 addition & 0 deletions async-query/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ plugins {
}

repositories {
maven { url "https://ci.opensearch.org/maven2/" }
mavenCentral()
}

Expand Down
1 change: 1 addition & 0 deletions benchmarks/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ plugins {
}

repositories {
maven { url "https://ci.opensearch.org/maven2/" }
mavenCentral()
}

Expand Down
3 changes: 3 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ buildscript {

repositories {
mavenLocal()
maven { url "https://ci.opensearch.org/maven2/" }
mavenCentral()
maven { url "https://ci.opensearch.org/ci/dbc/snapshots/maven/" }
}
Expand All @@ -91,6 +92,7 @@ apply plugin: 'opensearch.java-agent'
// Repository on root level is for dependencies that project code depends on. And this block must be placed after plugins{}
repositories {
mavenLocal()
maven { url "https://ci.opensearch.org/maven2/" }
mavenCentral() // For Elastic Libs that you can use to get started coding until open OpenSearch libs are available
maven {
url 'https://jitpack.io'
Expand Down Expand Up @@ -169,6 +171,7 @@ allprojects {
subprojects {
repositories {
mavenLocal()
maven { url "https://ci.opensearch.org/maven2/" }
mavenCentral()
maven {
url 'https://jitpack.io'
Expand Down
1 change: 1 addition & 0 deletions buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ apply plugin: 'java'


repositories {
maven { url "https://ci.opensearch.org/maven2/" }
mavenCentral()
}

Expand Down
1 change: 1 addition & 0 deletions common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ plugins {
}

repositories {
maven { url "https://ci.opensearch.org/maven2/" }
mavenCentral()
}

Expand Down
1 change: 1 addition & 0 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ plugins {

repositories {
mavenLocal()
maven { url "https://ci.opensearch.org/maven2/" }
mavenCentral()
}

Expand Down
1 change: 1 addition & 0 deletions datasources/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ plugins {
}

repositories {
maven { url "https://ci.opensearch.org/maven2/" }
mavenCentral()
}

Expand Down
1 change: 1 addition & 0 deletions direct-query-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ plugins {
}

repositories {
maven { url "https://ci.opensearch.org/maven2/" }
mavenCentral()
}

Expand Down
1 change: 1 addition & 0 deletions direct-query/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ plugins {
}

repositories {
maven { url "https://ci.opensearch.org/maven2/" }
mavenCentral()
}

Expand Down
1 change: 1 addition & 0 deletions integ-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ boolean ignorePrometheus = ignorePrometheusProp != null && !ignorePrometheusProp

repositories {
mavenLocal()
maven { url "https://ci.opensearch.org/maven2/" }
mavenCentral()
maven {
url 'https://jitpack.io'
Expand Down
1 change: 1 addition & 0 deletions plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ ext {

repositories {
mavenLocal()
maven { url "https://ci.opensearch.org/maven2/" }
mavenCentral()
maven {
url 'https://jitpack.io'
Expand Down
1 change: 1 addition & 0 deletions prometheus/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ plugins {
}

repositories {
maven { url "https://ci.opensearch.org/maven2/" }
mavenCentral()
}

Expand Down
7 changes: 7 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
* SPDX-License-Identifier: Apache-2.0
*/

pluginManagement {
repositories {
maven { url "https://ci.opensearch.org/maven2/" }
gradlePluginPortal()
mavenCentral()
}
}

rootProject.name = 'opensearch-sql'

Expand Down
Loading