diff options
author | Vitaly Takmazov | 2018-03-16 10:46:23 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-03-16 10:46:23 +0300 |
commit | 9ef168a03b75aeca0c2f7dda9ce87d4014c703a9 (patch) | |
tree | 8ace0ada0f576d97592f8bc84803a2dcf3e7a244 /juick-www/build.gradle | |
parent | 7cadae166b103182d7d1daaafe602cd8fb145c53 (diff) |
merge common projects
Diffstat (limited to 'juick-www/build.gradle')
-rw-r--r-- | juick-www/build.gradle | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/juick-www/build.gradle b/juick-www/build.gradle index fb7f8131..407f3402 100644 --- a/juick-www/build.gradle +++ b/juick-www/build.gradle @@ -19,12 +19,17 @@ task compileFrontend(type: YarnTask) { } apply plugin: 'war' +apply plugin: 'org.springframework.boot' dependencies { - compile project(':juick-server-web') compile project(':juick-server-jdbc') + compile 'com.github.ben-manes.caffeine:caffeine:2.6.2' + compile("org.springframework.boot:spring-boot-starter-cache") compile ('org.springframework.boot:spring-boot-starter-security') providedRuntime("org.springframework.boot:spring-boot-starter-tomcat") + providedRuntime 'com.h2database:h2:1.4.196' + runtime "commons-fileupload:commons-fileupload:1.3.3" + compile 'com.github.scribejava:scribejava-apis:5.3.0' compile 'com.github.ooxi:serialized-php-parser:0.5.0' compile 'com.sun.mail:javax.mail:1.6.1' |