diff options
author | Vitaly Takmazov | 2018-03-16 00:16:48 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-03-16 00:16:48 +0300 |
commit | 7cadae166b103182d7d1daaafe602cd8fb145c53 (patch) | |
tree | 3ec1072caadce30821588828412d9400ffeb32bd /juick-core | |
parent | 4f0fb934c083accf522d7cfc7082a9ea292d9955 (diff) |
boot: jackson is in spring-boot-starter-json
Diffstat (limited to 'juick-core')
-rw-r--r-- | juick-core/build.gradle | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/juick-core/build.gradle b/juick-core/build.gradle index 2df3f402..431847a8 100644 --- a/juick-core/build.gradle +++ b/juick-core/build.gradle @@ -1,5 +1,5 @@ dependencies { - compile "com.fasterxml.jackson.core:jackson-annotations:${rootProject.jacksonVersion}" + compile("org.springframework.boot:spring-boot-starter-json") compile 'org.apache.commons:commons-lang3:3.7' compile "commons-codec:commons-codec:1.11" compile 'org.apache.commons:commons-collections4:4.1' @@ -9,9 +9,5 @@ dependencies { compile 'com.google.code.findbugs:jsr305:3.0.2' testCompile("org.springframework.boot:spring-boot-starter-test") - testCompile "com.fasterxml.jackson.core:jackson-core:${rootProject.jacksonVersion}" - testCompile "com.fasterxml.jackson.core:jackson-databind:${rootProject.jacksonVersion}" - testCompile "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:${rootProject.jacksonVersion}" - testCompile "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:${rootProject.jacksonVersion}" testCompile "rocks.xmpp:xmpp-core-client:0.7.5" } |