From abb58e79348bd23c861f192940ee49a1a7e558b8 Mon Sep 17 00:00:00 2001 From: Ricardo de Cillo Date: Wed, 24 Apr 2019 11:30:17 +0200 Subject: [PATCH] Revert "Validation rdecillo" --- build.gradle | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/build.gradle b/build.gradle index 70a0e32a1e..24b1fc8565 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ import java.util.concurrent.TimeUnit buildscript { ext { - springBootVersion = '1.5.20.RELEASE' + springBootVersion = '1.5.15.RELEASE' } repositories { @@ -84,10 +84,8 @@ findbugs { dependencies { ext { dropwizardVersion = '3.1.3' - curatorVersion = '4.2.0' - zookeeperVersion = '3.4.14' - jacksonVersion = '2.9.8' - springFrameworkVersion = '4.3.23.RELEASE' + curatorVersion = '4.0.1' + zookeeperVersion = '3.4.10' } // Override spring-boot BOM versions ext['json.version'] = '20180130' @@ -100,13 +98,13 @@ dependencies { exclude module: 'log4j-over-slf4j' exclude module: 'spring-boot-starter-tomcat' } - compile "org.springframework:spring-context:$springFrameworkVersion" - compile "org.springframework:spring-web:$springFrameworkVersion" - compile "org.springframework:spring-webmvc:$springFrameworkVersion" + compile "org.springframework:spring-context" + compile "org.springframework:spring-web" + compile "org.springframework:spring-webmvc" compile "org.springframework.boot:spring-boot-starter-jetty" // oauth - compile('org.springframework.security.oauth:spring-security-oauth2:2.3.5.RELEASE') { + compile('org.springframework.security.oauth:spring-security-oauth2') { exclude module: 'spring-beans' exclude module: 'spring-core' exclude module: 'spring-context' @@ -133,7 +131,7 @@ dependencies { compile 'org.zalando:jackson-datatype-problem:0.22.0' compile 'org.zalando:problem:0.22.0' compile 'org.zalando:problem-spring-web:0.23.0' - compile 'com.google.guava:guava:27.1-jre' + compile 'com.google.guava:guava:25.1-jre' compile 'org.slf4j:slf4j-log4j12' compile "io.dropwizard.metrics:metrics-core:$dropwizardVersion" compile "com.ryantenney.metrics:metrics-spring:$dropwizardVersion" @@ -157,16 +155,16 @@ dependencies { compile('com.github.everit-org.json-schema:org.everit.json.schema:1.8.0') { exclude module: "json" } - compile("com.fasterxml.jackson.datatype:jackson-datatype-json-org:$jacksonVersion") { + compile("com.fasterxml.jackson.datatype:jackson-datatype-json-org") { exclude module: "json" } - compile "com.fasterxml.jackson.core:jackson-annotations:$jacksonVersion" - compile "com.fasterxml.jackson.core:jackson-core:$jacksonVersion" - compile "com.fasterxml.jackson.core:jackson-databind:$jacksonVersion" - compile "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:$jacksonVersion" - compile "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:$jacksonVersion" - compile "com.fasterxml.jackson.datatype:jackson-datatype-joda:$jacksonVersion" - compile "com.fasterxml.jackson.module:jackson-module-afterburner:$jacksonVersion" + compile "com.fasterxml.jackson.core:jackson-annotations" + compile "com.fasterxml.jackson.core:jackson-core" + compile "com.fasterxml.jackson.core:jackson-databind" + compile "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml" + compile "com.fasterxml.jackson.datatype:jackson-datatype-jdk8" + compile "com.fasterxml.jackson.datatype:jackson-datatype-joda" + compile "com.fasterxml.jackson.module:jackson-module-afterburner" compile 'org.zalando:twintip-spring-web:1.1.0' compile 'org.json:json:20180130'