Skip to content

Commit 02c87bf

Browse files
authored
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
1 parent dffedfb commit 02c87bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ dependencies {
319319
implementation 'de.javakaffee:kryo-serializers:0.45'
320320
implementation ('com.esotericsoftware:kryo'){
321321
version {
322-
strictly '4.+' // we're not compatible with kryo 5+
322+
strictly '[4,5)' // we're not compatible with kryo 5+
323323
}
324324
}
325325

0 commit comments

Comments
 (0)