Skip to content

Commit

Permalink
fix: support newest com.fasterxml.jackson-version (#85061)
Browse files Browse the repository at this point in the history
  • Loading branch information
skiesewetter-intershop committed Nov 14, 2023
1 parent 098e210 commit faa23e7
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -297,15 +297,22 @@ publishing {
signing {
sign(publishing.publications["intershopMvn"])
}

val jacksonVersion = "2.15.3"
dependencies {
implementation(gradleApi())
implementation(localGroovy())

implementation(gradleKotlinDsl())

implementation("org.apache.solr:solr-solrj:8.11.2")
implementation("com.bmuschko:gradle-docker-plugin:8.1.0")
implementation("com.bmuschko:gradle-docker-plugin:8.1.0") {
// avoid to use "old"-jackson-version
exclude(group = "com.fasterxml.jackson.core", module = "jackson-core")
exclude(group = "com.fasterxml.jackson.core", module = "jackson-annotations")
}
// manually include "newer"-jackson-version
implementation("com.fasterxml.jackson.core:jackson-core:$jacksonVersion")
implementation("com.fasterxml.jackson.core:jackson-annotations:$jacksonVersion")
implementation("com.intershop.gradle.icm:icm-gradle-plugin:5.8.0")
implementation("com.intershop.gradle.jobrunner:icmjobrunner:1.0.5")

Expand Down

0 comments on commit faa23e7

Please sign in to comment.