aboutsummaryrefslogtreecommitdiff
path: root/juick-server-core/build.gradle
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-03-15 23:24:13 +0300
committerGravatar Vitaly Takmazov2018-03-15 23:24:13 +0300
commitef9bb70fa1fe3744e971837eb78c6c004cd1e989 (patch)
treecee55dfcdcf9daf29c4835b200e1277a5d90b101 /juick-server-core/build.gradle
parent55ec9f370d76a76aa33e290a093995d576e70bdb (diff)
boot: simplify test configuration
Diffstat (limited to 'juick-server-core/build.gradle')
-rw-r--r--juick-server-core/build.gradle13
1 files changed, 1 insertions, 12 deletions
diff --git a/juick-server-core/build.gradle b/juick-server-core/build.gradle
index 22adbb66..a03f88da 100644
--- a/juick-server-core/build.gradle
+++ b/juick-server-core/build.gradle
@@ -1,4 +1,3 @@
-apply plugin: 'java'
apply plugin: 'war'
sourceCompatibility = 1.8
@@ -6,7 +5,6 @@ sourceCompatibility = 1.8
dependencies {
compile project(':juick-core')
- compile "org.slf4j:slf4j-api:${rootProject.slf4jVersion}"
compile "com.fasterxml.jackson.core:jackson-core:${rootProject.jacksonVersion}"
compile "com.fasterxml.jackson.core:jackson-databind:${rootProject.jacksonVersion}"
compile "com.fasterxml.jackson.core:jackson-annotations:${rootProject.jacksonVersion}"
@@ -21,14 +19,5 @@ dependencies {
compile "rocks.xmpp:xmpp-extensions-client:0.7.5"
compile "javax.inject:javax.inject:1"
-
- testCompile "junit:junit:${rootProject.junitVersion}"
- testCompile "org.hamcrest:hamcrest-all:${rootProject.hamcrestVersion}"
- testCompile "org.mockito:mockito-core:${rootProject.mockitoVersion}"
-}
-
-compileJava.options.encoding = 'UTF-8'
-
-configurations {
- all*.exclude module: 'commons-logging'
+ testCompile("org.springframework.boot:spring-boot-starter-test")
}