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: 0 additions & 1 deletion notifications/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ buildscript {
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://central.sonatype.com/repository/maven-snapshots/" }
maven { url "https://aws.oss.sonatype.org/content/repositories/snapshots" }
}

dependencies {
Expand Down
1 change: 0 additions & 1 deletion notifications/core-spi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ repositories {
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://central.sonatype.com/repository/maven-snapshots/" }
maven { url "https://aws.oss.sonatype.org/content/repositories/snapshots" }
}

apply plugin: 'opensearch.java'
Expand Down
1 change: 0 additions & 1 deletion notifications/core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ repositories {
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://central.sonatype.com/repository/maven-snapshots/" }
maven { url "https://aws.oss.sonatype.org/content/repositories/snapshots" }
}

apply plugin: 'opensearch.opensearchplugin'
Expand Down
6 changes: 3 additions & 3 deletions notifications/notifications/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ ext.resolvePluginFile = { pluginId ->
}

testClusters.integTest {
testDistribution = 'INTEG_TEST'
testDistribution = 'ARCHIVE'

// Cluster shrink exception thrown if we try to set numberOfNodes to 1, so only apply if > 1
if (_numNodes > 1) numberOfNodes = _numNodes
Expand All @@ -386,7 +386,7 @@ testClusters.integTest {
// Always be minimumCompatibilityVersion of current opensearch version(3.0.0)
// get latest 2.x version from OpenSearch 2.x branch
static def fetchVersionProperties() {
def url = 'https://raw.githubusercontent.com/opensearch-project/OpenSearch/refs/heads/3.1/buildSrc/version.properties'
def url = 'https://raw.githubusercontent.com/opensearch-project/OpenSearch/refs/heads/3.2/buildSrc/version.properties'
def content = new URL(url).text
// Use regex to extract the version number
def matcher = content =~ /opensearch\s*=\s*(\d+\.\d+\.\d+)/
Expand Down Expand Up @@ -415,7 +415,7 @@ def notificationsFile = resolvePluginFile("notifications")
2.times { i ->
testClusters {
"${baseName}$i" {
testDistribution = "INTEG_TEST"
testDistribution = "ARCHIVE"
versions = [bwcOpenSearchVesion, opensearch_version]
numberOfNodes = 3
plugin(provider(notificationsCoreFile))
Expand Down
Loading