Skip to content

Commit

Permalink
Change the kryo version specification to use maven style [,) instead …
Browse files Browse the repository at this point in the history
…of + (broadinstitute#9018)

* maven central doesn't like + in version ranges and gradle doesn't translate it
  • Loading branch information
lbergelson authored Oct 24, 2024
1 parent dffedfb commit 02c87bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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+
}
}

Expand Down

0 comments on commit 02c87bf

Please sign in to comment.