diff options
author | Alexander Alexeev | 2016-11-24 00:24:20 +0700 |
---|---|---|
committer | Vitaly Takmazov | 2016-11-24 12:05:10 +0300 |
commit | c207b80dd642dd8d5c18340fa5982a3c61ead460 (patch) | |
tree | 618827283da96dbf90eb4fca62c0f2f3173f811a /juick-spring-www/build.gradle | |
parent | e7fd58f1023ce9e1c9ab880bf27c5c0b2a3cffca (diff) |
simple thymeleaf test is added
Diffstat (limited to 'juick-spring-www/build.gradle')
-rw-r--r-- | juick-spring-www/build.gradle | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/juick-spring-www/build.gradle b/juick-spring-www/build.gradle index e405506b..9ba9bebf 100644 --- a/juick-spring-www/build.gradle +++ b/juick-spring-www/build.gradle @@ -30,11 +30,18 @@ dependencies { compile "org.thymeleaf:thymeleaf:${thymeleafVersion}" compile "org.thymeleaf:thymeleaf-spring4:${thymeleafVersion}" compile "org.thymeleaf.extras:thymeleaf-extras-java8time:3.0.0.RELEASE" + compile "org.thymeleaf.extras:thymeleaf-extras-springsecurity4:3.0.1.RELEASE" compile "nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:2.1.1" compile "org.springframework.security:spring-security-web:${springSecurityVersion}" compile "org.springframework.security:spring-security-config:${springSecurityVersion}" + + testCompile 'junit:junit:4.12' + testCompile "org.mockito:mockito-core:1.+" + 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" } |