diff options
author | joffrey-bion <joffrey.bion@gmail.com> | 2020-01-26 17:36:47 +0100 |
---|---|---|
committer | joffrey-bion <joffrey.bion@gmail.com> | 2020-01-26 17:36:47 +0100 |
commit | 3d404cfebde92359fd23513c77a20115379be329 (patch) | |
tree | 2aaa7770707552fe527617a301217365365be264 /sw-server | |
parent | Upgrade to Spring Boot 2.2.4 (diff) | |
download | seven-wonders-3d404cfebde92359fd23513c77a20115379be329.tar.gz seven-wonders-3d404cfebde92359fd23513c77a20115379be329.tar.bz2 seven-wonders-3d404cfebde92359fd23513c77a20115379be329.zip |
Change deprecated gradle configuration compile() to implementation()
Diffstat (limited to 'sw-server')
-rw-r--r-- | sw-server/build.gradle.kts | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/sw-server/build.gradle.kts b/sw-server/build.gradle.kts index 650ec001..c1625239 100644 --- a/sw-server/build.gradle.kts +++ b/sw-server/build.gradle.kts @@ -8,21 +8,21 @@ plugins { apply(plugin = "io.spring.dependency-management") dependencies { - compile(project(":sw-common-model")) - compile(project(":sw-engine")) - compile(kotlin("stdlib-jdk8")) - compile(kotlin("reflect")) // required by Spring 5 + implementation(project(":sw-common-model")) + implementation(project(":sw-engine")) + implementation(kotlin("stdlib-jdk8")) + implementation(kotlin("reflect")) // required by Spring 5 - compile("org.springframework.boot:spring-boot-starter-websocket") - compile("org.springframework.boot:spring-boot-starter-security") + implementation("org.springframework.boot:spring-boot-starter-websocket") + implementation("org.springframework.boot:spring-boot-starter-security") // required by spring security when using websockets - compile("org.springframework.security:spring-security-messaging") + implementation("org.springframework.security:spring-security-messaging") - compile("com.fasterxml.jackson.module:jackson-module-kotlin") + implementation("com.fasterxml.jackson.module:jackson-module-kotlin") - 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") + implementation("ch.qos.logback:logback-classic:1.1.8") + implementation("org.hildan.livedoc:livedoc-springboot:4.3.2") + implementation("org.hildan.livedoc:livedoc-ui-webjar:4.3.2") annotationProcessor("org.hildan.livedoc:livedoc-javadoc-processor:4.3.2") |