From 02c87bfd0beda327aef45dbc6e2b122aca2fd439 Mon Sep 17 00:00:00 2001 From: Louis Bergelson Date: Wed, 23 Oct 2024 21:00:48 -0400 Subject: [PATCH] Change the kryo version specification to use maven style [,) instead of + (#9018) * maven central doesn't like + in version ranges and gradle doesn't translate it --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index e16d5998f1c..184dec2632c 100644 --- a/build.gradle +++ b/build.gradle @@ -319,7 +319,7 @@ dependencies { implementation 'de.javakaffee:kryo-serializers:0.45' implementation ('com.esotericsoftware:kryo'){ version { - strictly '4.+' // we're not compatible with kryo 5+ + strictly '[4,5)' // we're not compatible with kryo 5+ } }