aboutsummaryrefslogtreecommitdiff
path: root/juick-ws
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-ws
parenta797587800b68821a810fa3d833352dc272d42f7 (diff)
move project dependencies versions definitions to the root project
Diffstat (limited to 'juick-ws')
-rw-r--r--juick-ws/build.gradle8
1 files changed, 3 insertions, 5 deletions
diff --git a/juick-ws/build.gradle b/juick-ws/build.gradle
index 2326a13b..f9c88393 100644
--- a/juick-ws/build.gradle
+++ b/juick-ws/build.gradle
@@ -11,13 +11,11 @@ apply plugin: 'war'
apply plugin: 'org.akhikhl.gretty'
apply plugin: 'com.github.ben-manes.versions'
-def springFrameworkVersion = '4.3.4.RELEASE'
-
dependencies {
compile project(':juick-server')
- compile 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.6.3'
- compile "org.springframework:spring-webmvc:${springFrameworkVersion}"
- compile "org.springframework:spring-websocket:${springFrameworkVersion}"
+ compile "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:${rootProject.jacksonVersion}"
+ compile "org.springframework:spring-webmvc:${rootProject.springFrameworkVersion}"
+ compile "org.springframework:spring-websocket:${rootProject.springFrameworkVersion}"
compile 'com.mitchellbosecke:pebble-spring4:2.3.0'
providedRuntime 'mysql:mysql-connector-java:5.1.40'
}