summaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2017-05-28 15:51:21 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2017-05-28 15:51:21 +0200
commit3fe4c222cb0ae0c9492a8183d5128231af0a9908 (patch)
treefc851fb89d13129f3c9fa279a51e79af3901e4f7 /backend
parentExtract Jackstomp as dependency (diff)
downloadseven-wonders-3fe4c222cb0ae0c9492a8183d5128231af0a9908.tar.gz
seven-wonders-3fe4c222cb0ae0c9492a8183d5128231af0a9908.tar.bz2
seven-wonders-3fe4c222cb0ae0c9492a8183d5128231af0a9908.zip
Remove unnecessary webjars
Diffstat (limited to 'backend')
-rw-r--r--backend/build.gradle5
1 files changed, 0 insertions, 5 deletions
diff --git a/backend/build.gradle b/backend/build.gradle
index 83afffbb..e4d88e2c 100644
--- a/backend/build.gradle
+++ b/backend/build.gradle
@@ -30,11 +30,6 @@ dependencies {
compile 'org.springframework.boot:spring-boot-starter-websocket'
compile 'org.springframework.security:spring-security-core:4.2.0.RELEASE'
- compile 'org.webjars:webjars-locator'
- compile 'org.webjars:sockjs-client:1.0.2'
- compile 'org.webjars:stomp-websocket:2.3.3'
- compile 'org.webjars:bootstrap:3.3.7'
- compile 'org.webjars:jquery:3.1.0'
testCompile 'org.springframework.boot:spring-boot-starter-test'
testCompile 'org.hildan.jackstomp:jackstomp:1.0.0'
bgstack15