diff options
author | Vitaly Takmazov | 2017-05-12 16:26:59 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-05-12 16:26:59 +0300 |
commit | 161ef8c74547f8400d8264a1ab39d9c0c2240235 (patch) | |
tree | 684435a1e7fd01c452e043acb713849af6bff9be /juick-server/build.gradle | |
parent | 373cc36a337c67ab12b773366be0a862d7d88ae8 (diff) |
gradle: dependencyUpdates
Diffstat (limited to 'juick-server/build.gradle')
-rw-r--r-- | juick-server/build.gradle | 6 |
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" } |