aboutsummaryrefslogtreecommitdiff
path: root/juick-core/build.gradle
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2016-07-31 00:53:54 +0300
committerGravatar Vitaly Takmazov2016-07-31 00:53:54 +0300
commit596d1dd390a30d8a88b3d37ac24ce69c964d074a (patch)
tree84da29c8da79f5a9510e2acb0ef8a6b8ed8ec8bd /juick-core/build.gradle
parentba2b96e406bcf59111ba5b081171095edefcbd5c (diff)
gradle: update dependencies
Diffstat (limited to 'juick-core/build.gradle')
-rw-r--r--juick-core/build.gradle10
1 files changed, 7 insertions, 3 deletions
diff --git a/juick-core/build.gradle b/juick-core/build.gradle
index ac70cb9a..ea50b3a4 100644
--- a/juick-core/build.gradle
+++ b/juick-core/build.gradle
@@ -6,10 +6,14 @@ repositories {
dependencies {
compile project(':deps:com.juick.xmpp')
- compile 'com.fasterxml.jackson.core:jackson-annotations:2.8.0'
- compile 'org.apache.httpcomponents:httpclient:4.5.1'
+ def jacksonVersion = '2.8.1'
+ compile "com.fasterxml.jackson.core:jackson-core:${jacksonVersion}"
+ compile "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
+ compile "com.fasterxml.jackson.core:jackson-annotations:${jacksonVersion}"
+ compile "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:${jacksonVersion}"
+ compile 'org.apache.httpcomponents:httpclient:4.5.2'
compile 'org.apache.commons:commons-lang3:3.4'
- compile "org.springframework:spring-jdbc:4.3.1.RELEASE"
+ compile "org.springframework:spring-jdbc:4.3.2.RELEASE"
compile 'org.json:json:20151123'
}