File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ ThisBuild / publishTo := {
27
27
bomFormat := " xml"
28
28
29
29
version := " 2.20.0-SNAPSHOT"
30
+ val jacksonAnnotationVersion = " 2.20-rc1"
30
31
val jacksonCoreVersion = " 2.20.0-rc1"
31
32
val jacksonNonCoreVersion = jacksonCoreVersion
32
33
@@ -127,13 +128,13 @@ Test / unmanagedSourceDirectories ++= {
127
128
val jacksonDependencies = if (jacksonCoreVersion.contains(" SNAPSHOT" ))
128
129
Seq (
129
130
" 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(),
131
132
" com.fasterxml.jackson.core" % " jackson-databind" % jacksonCoreVersion changing()
132
133
)
133
134
else
134
135
Seq (
135
136
" com.fasterxml.jackson.core" % " jackson-core" % jacksonCoreVersion,
136
- " com.fasterxml.jackson.core" % " jackson-annotations" % jacksonCoreVersion ,
137
+ " com.fasterxml.jackson.core" % " jackson-annotations" % jacksonAnnotationVersion ,
137
138
" com.fasterxml.jackson.core" % " jackson-databind" % jacksonCoreVersion
138
139
)
139
140
You can’t perform that action at this time.
0 commit comments