aboutsummaryrefslogtreecommitdiff
path: root/juick-api/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'juick-api/build.gradle')
-rw-r--r--juick-api/build.gradle9
1 files changed, 9 insertions, 0 deletions
diff --git a/juick-api/build.gradle b/juick-api/build.gradle
index 9c6e98a5..08991eed 100644
--- a/juick-api/build.gradle
+++ b/juick-api/build.gradle
@@ -13,8 +13,17 @@ apply plugin: 'org.akhikhl.gretty'
apply plugin: 'com.github.ben-manes.versions'
apply plugin: 'com.github.tkruse.groovysh'
+def springFrameworkVersion = "4.3.4.RELEASE"
+def springSecurityVersion = "4.2.0.RELEASE"
+
dependencies {
compile project(':juick-server')
+
+ compile "org.springframework:spring-webmvc:${springFrameworkVersion}"
+
+ compile "org.springframework.security:spring-security-web:${springSecurityVersion}"
+ compile "org.springframework.security:spring-security-config:${springSecurityVersion}"
+
providedCompile 'javax.servlet:javax.servlet-api:3.1.0'
compile 'com.github.pengrad:java-telegram-bot-api:2.1.4'
compile 'org.msbotframework4j:msbotframework4j-builder:0.1.4'