Skip to content

Commit

Permalink
Fix jackson databind version
Browse files Browse the repository at this point in the history
  • Loading branch information
jameskleeh committed Sep 9, 2019
1 parent 668706e commit e1c4617
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
8 changes: 6 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,13 @@ ext {
jackson : [
version: jacksonVersion,
group : 'com.fasterxml.jackson.core',
name : 'jackson-databind',
modules: ['jackson-core', 'jackson-annotations']
],
'jackson.databind' : [
version: jacksonDatabindVersion,
group : 'com.fasterxml.jackson.core',
name : 'jackson-databind',
],
'jackson.modules' : [
version: jacksonVersion,
group : 'com.fasterxml.jackson.module',
Expand Down Expand Up @@ -837,4 +841,4 @@ dependencyUpdates.resolutionStrategy {
}
}
}
}
}
4 changes: 2 additions & 2 deletions graal/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
dependencies {
compileOnly project(":inject-java")
compile project(":inject")
compile dependencyVersion("jackson")
compile dependencyVersion("jackson.databind")
testCompile project(":inject-java")
testCompile project(":http")
testCompile project(":inject-java-test")
}
}
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ gormVersion=7.0.2.RELEASE
gormHibernateVersion=7.0.1.RELEASE
grailsVersion=3.2.9
groovyVersion=2.5.6
jacksonVersion=2.9.9.3
jacksonVersion=2.9.9
jacksonDatabindVersion=2.9.9.3
lettuceVersion=5.1.7.RELEASE
nettyVersion=4.1.38.Final
reactivePgClientVersion=0.11.4
Expand Down
2 changes: 1 addition & 1 deletion runtime/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies {
compileOnly project(":graal")
compileOnly dependencyVersion("jcache")
compile dependencyVersion("validation")
compile dependencyVersion("jackson")
compile dependencyVersion("jackson.databind")
compile dependencyVersion("rxjava2")

compile([
Expand Down

0 comments on commit e1c4617

Please sign in to comment.