aboutsummaryrefslogtreecommitdiff
path: root/juick-server/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'juick-server/build.gradle')
-rw-r--r--juick-server/build.gradle6
1 files changed, 2 insertions, 4 deletions
diff --git a/juick-server/build.gradle b/juick-server/build.gradle
index 308b6ede..49712622 100644
--- a/juick-server/build.gradle
+++ b/juick-server/build.gradle
@@ -1,6 +1,5 @@
apply plugin: 'java-library'
apply plugin: 'war'
-apply plugin: 'com.github.ben-manes.versions'
sourceCompatibility = 1.8
@@ -8,7 +7,7 @@ dependencies {
compile project(':juick-core')
compile "com.fasterxml.jackson.core:jackson-core:${rootProject.jacksonVersion}"
- compile "com.fasterxml.jackson.core:jackson-databind:${rootProject.jacksonVersion}"
+ compile "com.fasterxml.jackson.core:jackson-databind:2.8.8.1"
compile "com.fasterxml.jackson.core:jackson-annotations:${rootProject.jacksonVersion}"
compile "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:${rootProject.jacksonVersion}"
@@ -27,7 +26,7 @@ dependencies {
providedCompile "commons-io:commons-io:2.5"
providedCompile "commons-codec:commons-codec:1.10"
- compile 'com.github.ben-manes.caffeine:caffeine:2.4.0'
+ compile 'com.github.ben-manes.caffeine:caffeine:2.5.0'
compile "org.springframework:spring-context:${rootProject.springFrameworkVersion}"
compile "org.springframework:spring-jdbc:${rootProject.springFrameworkVersion}"
@@ -53,7 +52,6 @@ dependencies {
testCompile "org.springframework:spring-test:${rootProject.springFrameworkVersion}"
testCompile "org.springframework.security:spring-security-test:${rootProject.springSecurityVersion}"
- testRuntime "org.thymeleaf:thymeleaf-testing:3.0.2.RELEASE"
testRuntime "mysql:mysql-connector-java:5.1.40"
}