diff options
author | Vitaly Takmazov | 2018-04-02 16:00:44 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-04-02 16:00:44 +0300 |
commit | 22ee9166d87a9b6a853c25c5f2bb3ff95aacad35 (patch) | |
tree | 9d47f531c4adca4266a496d9138156957fb23902 /juick-www/build.gradle | |
parent | c469abc2a0cdef22b789c7b26ac05f261d21c870 (diff) |
xmpp: fix router init
Diffstat (limited to 'juick-www/build.gradle')
-rw-r--r-- | juick-www/build.gradle | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/juick-www/build.gradle b/juick-www/build.gradle index 5cebe3e8..5cad742f 100644 --- a/juick-www/build.gradle +++ b/juick-www/build.gradle @@ -23,6 +23,7 @@ apply plugin: 'org.springframework.boot' dependencies { compile project(':juick-server-jdbc') + providedCompile project(':juick-server') 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') @@ -38,7 +39,7 @@ dependencies { testCompile("org.springframework.boot:spring-boot-starter-test") testCompile ('net.sourceforge.htmlunit:htmlunit:2.29') - testCompile project(':juick-server') + } compileFrontend.dependsOn 'yarn' |