diff --git a/lib/sdk/server/build.gradle b/lib/sdk/server/build.gradle index 6d5bfd1..3fa8b93 100644 --- a/lib/sdk/server/build.gradle +++ b/lib/sdk/server/build.gradle @@ -66,19 +66,18 @@ ext { ext.libraries = [:] ext.versions = [ - "commonsCodec": "1.15", - "gson": "2.8.9", - "guava": "32.0.1-jre", + "commonsCodec": "1.19.0", + "gson": "2.13.1", + "guava": "33.4.8-jre", "jackson": "2.11.2", - "launchdarklyJavaSdkCommon": "2.1.1", + "launchdarklyJavaSdkCommon": "2.1.2", "launchdarklyJavaSdkInternal": "1.5.0", "launchdarklyLogging": "1.1.0", - "okhttp": "4.9.3", // specify this for the SDK build instead of relying on the transitive dependency from okhttp-eventsource + "okhttp": "4.12.0", // specify this for the SDK build instead of relying on the transitive dependency from okhttp-eventsource "okhttpEventsource": "4.1.0", "reactorCore":"3.3.22.RELEASE", - "slf4j": "1.7.21", - "snakeyaml": "2.0", - "jedis": "2.9.0", + "slf4j": "1.7.36", + "snakeyaml": "2.4", "annotations": "13" // also included transitively with okhttp ] diff --git a/lib/shared/internal/buildSrc/src/main/kotlin/Dependencies.kt b/lib/shared/internal/buildSrc/src/main/kotlin/Dependencies.kt index dc6817e..747c2df 100644 --- a/lib/shared/internal/buildSrc/src/main/kotlin/Dependencies.kt +++ b/lib/shared/internal/buildSrc/src/main/kotlin/Dependencies.kt @@ -3,10 +3,10 @@ // build script(s). object Versions { - const val gson = "2.8.9" - const val launchdarklyJavaSdkCommon = "2.1.1" + const val gson = "2.13.1" + const val launchdarklyJavaSdkCommon = "2.1.2" const val launchdarklyLogging = "1.1.1" - const val okhttp = "4.9.1" + const val okhttp = "4.12.0" const val testHelpers = "1.2.0" }