summaryrefslogtreecommitdiff
path: root/backend/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'backend/build.gradle')
-rw-r--r--backend/build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/build.gradle b/backend/build.gradle
index 5ef36783..dd3f4ffd 100644
--- a/backend/build.gradle
+++ b/backend/build.gradle
@@ -20,9 +20,9 @@ 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 'com.google.code.gson:gson:2.8.0'
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'
bgstack15