diff options
author | Alexander Alexeev | 2016-11-20 04:05:12 +0700 |
---|---|---|
committer | Vitaly Takmazov | 2016-11-23 13:03:02 +0300 |
commit | a2d00e3bf7043875f128ff59f0da00e612dab329 (patch) | |
tree | 9277a94e1ed990db5321d434a66966b699b84d31 /juick-spring-www/build.gradle | |
parent | e5f90386e764f7b007dff947effbfe013ba297bc (diff) |
configuration and build files
Diffstat (limited to 'juick-spring-www/build.gradle')
-rw-r--r-- | juick-spring-www/build.gradle | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/juick-spring-www/build.gradle b/juick-spring-www/build.gradle index 2f8c0377..fb403337 100644 --- a/juick-spring-www/build.gradle +++ b/juick-spring-www/build.gradle @@ -19,13 +19,19 @@ apply plugin: 'org.akhikhl.gretty' apply plugin: 'com.github.ben-manes.versions' def springFrameworkVersion = '4.3.4.RELEASE' +def thymeleafVersion = '3.0.2.RELEASE' dependencies { compile project(':juick-server') - compile 'com.sun.mail:javax.mail:1.5.6' + compile "com.sun.mail:javax.mail:1.5.6" + compile "org.pegdown:pegdown:1.6.0" compile "org.springframework:spring-webmvc:${springFrameworkVersion}" - providedCompile 'javax.servlet:javax.servlet-api:3.1.0' - providedRuntime 'mysql:mysql-connector-java:5.1.40' + 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}" + providedCompile "javax.servlet:javax.servlet-api:3.1.0" + providedRuntime "mysql:mysql-connector-java:5.1.40" } compileFrontend.dependsOn 'npmInstall' |