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
2 changes: 1 addition & 1 deletion notifications/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

buildscript {
ext {
opensearch_version = System.getProperty("opensearch.version", "3.6.0-SNAPSHOT")
opensearch_version = System.getProperty("opensearch.version", "3.7.0-SNAPSHOT")
isSnapshot = "true" == System.getProperty("build.snapshot", "true")
buildVersionQualifier = System.getProperty("build.version_qualifier", "")
// 3.0.0-SNAPSHOT -> 3.0.0.0-SNAPSHOT
Expand Down
2 changes: 2 additions & 0 deletions notifications/notifications/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ configurations.all {
force "io.netty:netty-resolver:${versions.netty}"
force "io.netty:netty-transport-native-unix-common:${versions.netty}"
force "org.dafny:DafnyRuntime:4.9.0"
force "org.apache.logging.log4j:log4j-api:${versions.log4j}"
force "org.apache.logging.log4j:log4j-core:${versions.log4j}"
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
*/
package org.opensearch.notifications.model

import com.fasterxml.jackson.core.JsonParseException
import org.junit.jupiter.api.Assertions.assertEquals
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.assertThrows
import org.opensearch.commons.utils.recreateObject
import org.opensearch.notifications.createObjectFromJsonString
import org.opensearch.notifications.getJsonString
import org.opensearch.tools.jackson.core.JsonParseException
import kotlin.test.assertNotNull
import kotlin.test.assertNull

Expand Down
Loading