Update main to OpenSearch 3.3.2 (#632)

This commit is contained in:
Jorge Sánchez 2025-11-07 18:09:03 +01:00 committed by GitHub
parent def4c84a71
commit 792cf70e7e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,7 +3,7 @@ import java.util.concurrent.Callable
buildscript {
ext {
opensearch_version = System.getProperty("opensearch.version", "3.2.0-SNAPSHOT")
opensearch_version = System.getProperty("opensearch.version", "3.3.2")
opensearch_build = opensearch_version.replace("-SNAPSHOT","") + ".0"
wazuh_version = System.getProperty("version", "5.0.0")
revision = System.getProperty("revision", "0")
@ -81,8 +81,8 @@ configurations {
}
dependencies {
implementation "org.apache.logging.log4j:log4j-slf4j-impl:2.23.1"
implementation "org.slf4j:slf4j-api:1.7.36"
implementation "org.apache.logging.log4j:log4j-slf4j-impl:2.25.2"
implementation "org.slf4j:slf4j-api:2.0.17"
// Job Scheduler & ISM stuff (required for the initialization of ISM policies)
zipArchive group: 'org.opensearch.plugin', name: 'opensearch-job-scheduler', version: opensearch_build
@ -148,7 +148,7 @@ testClusters.integTest {
plugin(getPlugin("opensearch-job-scheduler"))
plugin(getPlugin("opensearch-index-management"))
testDistribution = "ARCHIVE"
testDistribution = "INTEG_TEST"
// This installs our plugin into the testClusters
plugin(project.tasks.bundlePlugin.archiveFile)