diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2018-04-28 10:33:56 +0200 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2018-04-28 10:35:42 +0200 |
commit | 068113b0b4bedfd7491afa06c64734a0ff2959c6 (patch) | |
tree | 76c342b984d9ac801af595956f56869847f4f432 /backend/build.gradle | |
parent | Fix gitignore for gradle build folder (diff) | |
download | seven-wonders-068113b0b4bedfd7491afa06c64734a0ff2959c6.tar.gz seven-wonders-068113b0b4bedfd7491afa06c64734a0ff2959c6.tar.bz2 seven-wonders-068113b0b4bedfd7491afa06c64734a0ff2959c6.zip |
Migrate to Spring Boot 2.0.1 (using Spring 5)
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' |