diff options
Diffstat (limited to 'juick-www/build.gradle')
-rw-r--r-- | juick-www/build.gradle | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/juick-www/build.gradle b/juick-www/build.gradle index d33b6522..19b51be6 100644 --- a/juick-www/build.gradle +++ b/juick-www/build.gradle @@ -22,9 +22,12 @@ apply plugin: 'war' apply plugin: 'org.springframework.boot' dependencies { + compile project(':juick-common') compile project(':juick-server-jdbc') + compile project(':juick-server-xmpp') 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-web") compile ('org.springframework.boot:spring-boot-starter-security') providedRuntime("org.springframework.boot:spring-boot-starter-tomcat") providedRuntime 'com.h2database:h2:1.4.196' @@ -45,6 +48,10 @@ dependencies { compileFrontend.dependsOn 'yarn' processResources.dependsOn 'compileFrontend' +bootWar { + exclude('**/com/juick/server/**') +} + bootJar { launchScript() } |