diff options
Diffstat (limited to 'juick-www')
-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' |