aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexander Alexeev2016-11-21 13:36:01 +0700
committerGravatar Vitaly Takmazov2016-11-23 13:03:03 +0300
commit9d3b2623dac8fe3af4d0a8d05dad8ea96ea92f3d (patch)
treedd44ff5a30de176c87f32ee60fc9f6097e580c96
parenta2d00e3bf7043875f128ff59f0da00e612dab329 (diff)
build file
-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"
}