aboutsummaryrefslogtreecommitdiff
path: root/juick-core
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2016-12-02 23:37:04 +0300
committerGravatar Vitaly Takmazov2016-12-02 23:37:04 +0300
commit677471013442bcb5455d4c827d7a13a17392fc8f (patch)
tree9b35c6a16b67fad39e2bd17c7b48cc10d75a680c /juick-core
parenta797587800b68821a810fa3d833352dc272d42f7 (diff)
move project dependencies versions definitions to the root project
Diffstat (limited to 'juick-core')
-rw-r--r--juick-core/build.gradle7
1 files changed, 2 insertions, 5 deletions
diff --git a/juick-core/build.gradle b/juick-core/build.gradle
index 295a22d3..8a7e00b6 100644
--- a/juick-core/build.gradle
+++ b/juick-core/build.gradle
@@ -1,12 +1,9 @@
apply plugin: 'java'
apply plugin: 'com.github.ben-manes.versions'
-def slf4jVersion = '1.7.21'
-def jacksonVersion = '2.8.5'
-
dependencies {
- compile "com.fasterxml.jackson.core:jackson-annotations:${jacksonVersion}"
- compile "org.slf4j:slf4j-api:${slf4jVersion}"
+ compile "com.fasterxml.jackson.core:jackson-annotations:${rootProject.jacksonVersion}"
+ compile "org.slf4j:slf4j-api:${rootProject.slf4jVersion}"
compile 'org.apache.httpcomponents:httpclient:4.5.2'
compile 'org.apache.commons:commons-lang3:3.5'
compile 'org.apache.commons:commons-collections4:4.1'