Skip to content

Commit

Permalink
fix: prevent maven from using jackson3 snapshot (#625)
Browse files Browse the repository at this point in the history
* fix: prevent maven from using jackson3 snapshot

* chore: allow renovate to update the jackson version

Co-authored-by: Philipp Heuer <git@philippheuer.me>
  • Loading branch information
iProdigy and PhilippHeuer committed Aug 25, 2022
1 parent cbdf64f commit 10ce56e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.gradle.kts
Expand Up @@ -110,8 +110,9 @@ subprojects {
listOf("com.fasterxml.jackson.core:jackson-annotations", "com.fasterxml.jackson.core:jackson-core", "com.fasterxml.jackson.core:jackson-databind", "com.fasterxml.jackson.datatype:jackson-datatype-jsr310").forEach { dep ->
add("api", dep) {
version {
strictly("[2.12,3[")
prefer("2.13.2")
strictly("[2.12,3-alpha[")
// renovate: depName=com.fasterxml.jackson:jackson-bom
prefer("2.13.3")
}
}
}
Expand Down

0 comments on commit 10ce56e

Please sign in to comment.