aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2019-04-06 19:41:54 +0300
committerGravatar Vitaly Takmazov2019-04-06 19:41:54 +0300
commit689ef69bce546483296203b680dbe36721d526a4 (patch)
tree7262fdd7440295a5d3923e9a9cdd0948c081940c /build.gradle
parenta410f8fe72aa38ea02a877890511a15f608245cb (diff)
Spring Boot 2.1.4
No need to override undertow dependencies anymore
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle10
1 files changed, 2 insertions, 8 deletions
diff --git a/build.gradle b/build.gradle
index ddf688f9..2bd337ab 100644
--- a/build.gradle
+++ b/build.gradle
@@ -9,7 +9,7 @@ buildscript {
}
}
plugins {
- id 'org.springframework.boot' version '2.1.3.RELEASE' apply false
+ id 'org.springframework.boot' version '2.1.4.RELEASE' apply false
id "com.moowork.node" version "1.3.1" apply false
id("org.asciidoctor.convert") version "2.0.0" apply false
}
@@ -111,13 +111,7 @@ dependencies {
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") {
- exclude group: 'org.jboss.xnio'
- }
- compile ("org.jboss.xnio:xnio-nio:3.7.1.Final") {
- exclude group: 'org.jboss.threads'
- }
- compile 'org.jboss.threads:jboss-threads:2.3.3.Final'
+ compile ("org.springframework.boot:spring-boot-starter-undertow")
compile ("org.springframework.boot:spring-boot-starter-json")
compile ('org.springframework.boot:spring-boot-devtools')