aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--juick-spring-www/build.gradle9
1 files changed, 6 insertions, 3 deletions
diff --git a/juick-spring-www/build.gradle b/juick-spring-www/build.gradle
index fb403337..f48f9d17 100644
--- a/juick-spring-www/build.gradle
+++ b/juick-spring-www/build.gradle
@@ -18,8 +18,9 @@ apply plugin: 'war'
apply plugin: 'org.akhikhl.gretty'
apply plugin: 'com.github.ben-manes.versions'
-def springFrameworkVersion = '4.3.4.RELEASE'
-def thymeleafVersion = '3.0.2.RELEASE'
+def springFrameworkVersion = "4.3.4.RELEASE"
+def thymeleafVersion = "3.0.2.RELEASE"
+def springSecurityVersion = "4.2.0.RELEASE"
dependencies {
compile project(':juick-server')
@@ -29,7 +30,9 @@ dependencies {
compile "org.thymeleaf:thymeleaf:${thymeleafVersion}"
compile "org.thymeleaf:thymeleaf-spring4:${thymeleafVersion}"
compile "org.thymeleaf.extras:thymeleaf-extras-java8time:3.0.0.RELEASE"
- testRuntime "org.thymeleaf:thymeleaf-spring4:${thymeleafVersion}"
+ compile "org.springframework.security:spring-security-web:${springSecurityVersion}"
+ compile "org.springframework.security:spring-security-config:${springSecurityVersion}"
+ testRuntime "org.thymeleaf:thymeleaf-testing:3.0.1.RELEASE"
providedCompile "javax.servlet:javax.servlet-api:3.1.0"
providedRuntime "mysql:mysql-connector-java:5.1.40"
}