Skip to content

Commit c67c74b

Browse files
author
yevhenii.nadtochii
committed
Pull the latest config
1 parent 519ea32 commit c67c74b

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

buildSrc/src/main/kotlin/io/spine/internal/dependency/Jackson.kt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ package io.spine.internal.dependency
2828

2929
@Suppress("unused")
3030
object Jackson {
31-
private const val version = "2.13.2"
32-
private const val databindVersion = "2.13.2.2"
31+
const val version = "2.13.2"
32+
const val databindVersion = "2.13.2.2"
3333
// https://github.com/FasterXML/jackson-core
3434
const val core = "com.fasterxml.jackson.core:jackson-core:${version}"
3535
// https://github.com/FasterXML/jackson-databind
@@ -40,4 +40,8 @@ object Jackson {
4040
const val dataformatYaml = "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:${version}"
4141
// https://github.com/FasterXML/jackson-module-kotlin/releases
4242
const val moduleKotlin = "com.fasterxml.jackson.module:jackson-module-kotlin:${version}"
43+
// https://github.com/FasterXML/jackson-bom
44+
const val bom = "com.fasterxml.jackson:jackson-bom:${version}"
45+
// https://github.com/FasterXML/jackson-annotations
46+
const val annotations = "com.fasterxml.jackson.core:jackson-annotations:${version}"
4347
}

0 commit comments

Comments
 (0)