diff options
author | Vitaly Takmazov | 2018-03-15 23:24:13 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2018-03-15 23:24:13 +0300 |
commit | ef9bb70fa1fe3744e971837eb78c6c004cd1e989 (patch) | |
tree | cee55dfcdcf9daf29c4835b200e1277a5d90b101 /juick-www/build.gradle | |
parent | 55ec9f370d76a76aa33e290a093995d576e70bdb (diff) |
boot: simplify test configuration
Diffstat (limited to 'juick-www/build.gradle')
-rw-r--r-- | juick-www/build.gradle | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/juick-www/build.gradle b/juick-www/build.gradle index defc6558..a48532d4 100644 --- a/juick-www/build.gradle +++ b/juick-www/build.gradle @@ -18,14 +18,10 @@ task compileFrontend(type: YarnTask) { args = ['run', 'compile'] } -apply plugin: 'java' -apply plugin: 'war' -apply plugin: 'org.springframework.boot' -apply plugin: 'io.spring.dependency-management' - dependencies { compile project(':juick-server-web') compile project(':juick-server-jdbc') + compile ('org.springframework.boot:spring-boot-starter-security') 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' @@ -33,20 +29,13 @@ dependencies { compile 'com.atlassian.commonmark:commonmark:0.11.0' compile 'com.atlassian.commonmark:commonmark-ext-autolink:0.11.0' - testCompile project(path: ':juick-core', configuration: 'testArtifacts') - testCompile project(path: ':juick-server-web', configuration: 'testArtifacts') - testCompile project(path: ':juick-server-jdbc', configuration: 'testArtifacts') + testCompile("org.springframework.boot:spring-boot-starter-test") testCompile ('net.sourceforge.htmlunit:htmlunit:2.29') } compileFrontend.dependsOn 'yarn' processResources.dependsOn 'compileFrontend' -compileJava.options.encoding = 'UTF-8' bootJar { launchScript() } - -configurations { - all*.exclude module: 'commons-logging' -} |