diff options
Diffstat (limited to 'backend/build.gradle')
-rw-r--r-- | backend/build.gradle | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/backend/build.gradle b/backend/build.gradle index dd3f4ffd..705104aa 100644 --- a/backend/build.gradle +++ b/backend/build.gradle @@ -1,10 +1,12 @@ plugins { - id 'org.springframework.boot' version '1.5.3.RELEASE' + id 'org.springframework.boot' version '2.0.1.RELEASE' } apply plugin: 'java' apply plugin: 'idea' apply plugin: 'checkstyle' +apply plugin: 'org.springframework.boot' +apply plugin: 'io.spring.dependency-management' group 'org.luxons' version '1.0-SNAPSHOT' @@ -22,7 +24,7 @@ configurations { dependencies { compile project(':game-engine') compile 'org.springframework.boot:spring-boot-starter-websocket' - compile 'org.springframework.security:spring-security-core:4.2.0.RELEASE' + compile 'org.springframework.security:spring-security-core:5.0.4.RELEASE' compile 'ch.qos.logback:logback-classic:1.1.8' compile 'org.hildan.livedoc:livedoc-springboot:4.3.2' compile 'org.hildan.livedoc:livedoc-ui-webjar:4.3.2' |