diff options
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 19 |
1 files changed, 17 insertions, 2 deletions
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') |