aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2019-01-08 21:07:41 +0300
committerGravatar Vitaly Takmazov2019-01-08 21:07:41 +0300
commitf07e3280138241f20282ff20f5299d5714193f25 (patch)
treebc556ece33f0d0f1d640d5b68fbfe1f43b2217c8 /build.gradle
parent4239b1e51adaa45fb4b744e4eb00368ba05c9355 (diff)
JDK11 dependencies update
* Should be reverted when Boot will update starters dependencies
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle19
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')