Skip to content

Commit cd861a9

Browse files
authored
Update build.sbt
1 parent afec279 commit cd861a9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build.sbt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ ThisBuild / publishTo := {
2727
bomFormat := "xml"
2828

2929
version := "2.20.0-SNAPSHOT"
30+
val jacksonAnnotationVersion = "2.20-rc1"
3031
val jacksonCoreVersion = "2.20.0-rc1"
3132
val jacksonNonCoreVersion = jacksonCoreVersion
3233

@@ -127,13 +128,13 @@ Test / unmanagedSourceDirectories ++= {
127128
val jacksonDependencies = if (jacksonCoreVersion.contains("SNAPSHOT"))
128129
Seq(
129130
"com.fasterxml.jackson.core" % "jackson-core" % jacksonCoreVersion changing(),
130-
"com.fasterxml.jackson.core" % "jackson-annotations" % jacksonCoreVersion changing(),
131+
"com.fasterxml.jackson.core" % "jackson-annotations" % jacksonAnnotationVersion changing(),
131132
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonCoreVersion changing()
132133
)
133134
else
134135
Seq(
135136
"com.fasterxml.jackson.core" % "jackson-core" % jacksonCoreVersion,
136-
"com.fasterxml.jackson.core" % "jackson-annotations" % jacksonCoreVersion,
137+
"com.fasterxml.jackson.core" % "jackson-annotations" % jacksonAnnotationVersion,
137138
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonCoreVersion
138139
)
139140

0 commit comments

Comments
 (0)