diff options
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' |