Skip to content

Commit

Permalink
GH-242: chore: Reduce jackson dependency to single one
Browse files Browse the repository at this point in the history
com.fasterxml.jackson is also released together, so each artifact has the same version
  • Loading branch information
timonback committed Jun 26, 2023
1 parent 7b631c3 commit a5733b2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
4 changes: 0 additions & 4 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,14 @@ ext {
kafkaClientsVersion = '3.4.0'
kafkaStreamsVersion = '3.4.0'

jacksonAnnotationsVersion = '2.15.0'
jacksonCoreVersion = '2.15.0'
jacksonDatabindVersion = '2.15.0'
jacksonDataformatYamlVersion = '2.15.0'

jakartaAnnotationApiVersion = '2.1.1'

mockitoCoreVersion = '4.8.1'
mockitoJunitJupiterVersion = '5.4.0'

monetaVersion = '1.4.2'
monetaCoreVersion = '1.4.2'

moneyApiVersion = '1.1'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ version '0.1.2' + (isSnapshot ? '-SNAPSHOT' : '')
dependencies {
implementation "org.springframework:spring-context"

implementation "com.fasterxml.jackson.core:jackson-annotations:${jacksonAnnotationsVersion}"
implementation "com.fasterxml.jackson.core:jackson-databind:${jacksonDatabindVersion}"
implementation "com.fasterxml.jackson.core:jackson-annotations:${jacksonCoreVersion}"
implementation "com.fasterxml.jackson.core:jackson-databind:${jacksonCoreVersion}"

implementation "io.swagger.core.v3:swagger-annotations-jakarta:${swaggerCoreJakartaVersion}"
implementation "io.swagger.core.v3:swagger-core-jakarta:${swaggerCoreJakartaVersion}"
Expand Down
6 changes: 3 additions & 3 deletions springwolf-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ dependencies {
implementation "io.swagger.core.v3:swagger-annotations-jakarta:${swaggerCoreJakartaVersion}@jar"
implementation "io.swagger.core.v3:swagger-core-jakarta:${swaggerCoreJakartaVersion}"

implementation "com.fasterxml.jackson.core:jackson-annotations:${jacksonAnnotationsVersion}"
implementation "com.fasterxml.jackson.core:jackson-annotations:${jacksonCoreVersion}"
implementation "com.fasterxml.jackson.core:jackson-core:${jacksonCoreVersion}"
implementation "com.fasterxml.jackson.core:jackson-databind:${jacksonDatabindVersion}"
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:${jacksonDataformatYamlVersion}"
implementation "com.fasterxml.jackson.core:jackson-databind:${jacksonCoreVersion}"
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:${jacksonCoreVersion}"

implementation "org.slf4j:slf4j-api:${slf4jApiVersion}"

Expand Down

0 comments on commit a5733b2

Please sign in to comment.