Skip to content

Commit

Permalink
Bump Opensearch version to 1.2.1 (#70)
Browse files Browse the repository at this point in the history
* Bump Opensearch version to 1.2.1

Signed-off-by: Rishab Nahata <rnnahata@amazon.com>
  • Loading branch information
imRishN committed Dec 12, 2021
1 parent 97af237 commit cb4791a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.0
0.1.1
6 changes: 5 additions & 1 deletion java-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@ tasks.withType<Jar> {

tasks.test {
systemProperty("tests.security.manager", "false")
// Basic auth settings for integration test
systemProperty("https", System.getProperty("https", "true"))
systemProperty("user", System.getProperty("user", "admin"))
systemProperty("password", System.getProperty("password", "admin"))
}

val unitTest = task<Test>("unitTest") {
Expand All @@ -105,7 +109,7 @@ val integrationTest = task<Test>("integrationTest") {
}

dependencies {
val opensearchVersion = "1.0.0"
val opensearchVersion = "1.2.1"
val jacksonVersion = "2.12.5"

// Apache 2.0
Expand Down

0 comments on commit cb4791a

Please sign in to comment.