From f07e3280138241f20282ff20f5299d5714193f25 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Tue, 8 Jan 2019 21:07:41 +0300 Subject: JDK11 dependencies update * Should be reverted when Boot will update starters dependencies --- build.gradle | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) (limited to 'build.gradle') diff --git a/build.gradle b/build.gradle index fd931e15..03efb8bf 100644 --- a/build.gradle +++ b/build.gradle @@ -111,8 +111,23 @@ dependencies { compile ('org.springframework.boot:spring-boot-starter-security') compile ('org.springframework.boot:spring-boot-starter-jdbc') compile ("org.springframework.boot:spring-boot-starter-security") - compile ("org.springframework.boot:spring-boot-starter-web") - compile ("org.springframework.boot:spring-boot-starter-undertow") + compile ("org.springframework.boot:spring-boot-starter-web") { + exclude group: 'com.fasterxml.jackson.core' + exclude group: 'com.fasterxml.jackson.datatype' + exclude group: 'com.fasterxml.jackson.module' + } + compile 'com.fasterxml.jackson.core:jackson-core:2.9.8' + compile 'com.fasterxml.jackson.core:jackson-databind:2.9.8' + compile 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.9.8' + compile 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.8' + compile 'com.fasterxml.jackson.module:jackson-module-parameter-names:2.9.8' + compile ("org.springframework.boot:spring-boot-starter-undertow") { + exclude group: 'org.jboss.xnio' + } + compile ("org.jboss.xnio:xnio-nio:3.6.4.Final") { + exclude group: 'org.jboss.threads' + } + compile 'org.jboss.threads:jboss-threads:2.3.2.Final' compile ("org.springframework.boot:spring-boot-starter-websocket") compile ("org.springframework.boot:spring-boot-starter-json") compile ('org.springframework.boot:spring-boot-devtools') -- cgit v1.2.3