Skip to content

Commit 2556186

Browse files
author
Michel Davit
authored
Pin protobuf version to v3 (#1013)
1 parent 8eff118 commit 2556186

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.scala-steward.conf

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
updates.ignore = [
22
{ groupId = "org.apache.avro" }, # we test with multiple avro versions
3-
{ groupId = "org.neo4j.driver" } # v5 only supports java 17
43
]
54

65
updates.pin = [
7-
{ groupId = "org.scala-lang", artifactId="scala3-library", version = "3.3." } # stay on LTS
6+
# neo4j 5+ driver are released for java 17+
7+
{ groupId = "org.neo4j.driver", version = "4." },
8+
# tensorflow is not compatible with protobuf v4
9+
{ groupId = "com.google.protobuf", artifactId ="protobuf-java", version = "3." },
10+
# stay on LTS
11+
{ groupId = "org.scala-lang", artifactId="scala3-library", version = "3.3." }
812
]
913

1014
dependencyOverrides = [

0 commit comments

Comments
 (0)