Skip to content

Commit

Permalink
Bump version 3.0.0.0-alpha1 and update shadowPlugin for Job Scheduler (
Browse files Browse the repository at this point in the history
…#722)

* Bump version 3.0.0.0-alpha1 and update shadowPlugin for Job Scheduler

Signed-off-by: Peter Zhu <[email protected]>

* Support JDK23 with jacoco 0.8.12 bump

Signed-off-by: Peter Zhu <[email protected]>

---------

Signed-off-by: Peter Zhu <[email protected]>
  • Loading branch information
peterzhuamazon authored Jan 30, 2025
1 parent 586b38b commit 7a767c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import java.util.concurrent.Callable

buildscript {
ext {
opensearch_version = System.getProperty("opensearch.version", "3.0.0-SNAPSHOT")
opensearch_version = System.getProperty("opensearch.version", "3.0.0-alpha1-SNAPSHOT")
isSnapshot = "true" == System.getProperty("build.snapshot", "true")
buildVersionQualifier = System.getProperty("build.version_qualifier", "")
buildVersionQualifier = System.getProperty("build.version_qualifier", "alpha1")
// 2.2.0-SNAPSHOT -> 2.2.0.0-SNAPSHOT
version_tokens = opensearch_version.tokenize('-')
opensearch_build = version_tokens[0] + '.0'
Expand Down
4 changes: 2 additions & 2 deletions spi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import com.github.jengelman.gradle.plugins.shadow.ShadowBasePlugin
import org.opensearch.gradle.test.RestIntegTestTask

plugins {
id 'com.github.johnrengelman.shadow'
id 'com.gradleup.shadow'
id 'jacoco'
id 'maven-publish'
id 'signing'
Expand All @@ -31,7 +31,7 @@ ext {
}

jacoco {
toolVersion = '0.8.7'
toolVersion = '0.8.12'
reportsDirectory = file("$buildDir/JacocoReport")
}

Expand Down

0 comments on commit 7a767c5

Please sign in to comment.