add test dependencies

This commit is contained in:
mgabriel 2018-08-15 07:31:44 +02:00
parent 403dc84f2d
commit 09de60e24c

View File

@ -8,7 +8,6 @@ buildscript {
group 'com.mgabriel'
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
@ -26,7 +25,16 @@ dependencies {
compile "org.slf4j:slf4j-api:1.7.25"
compile "io.projectreactor:reactor-core:$reactorVersion"
compile "net.openhft:chronicle-queue:$chronicleVersion"
testCompile "com.google.guava:guava:26.0-jre"
testCompile "io.projectreactor:reactor-test:$reactorVersion"
testCompile "org.junit.jupiter:junit-jupiter-api:5.2.0"
testCompile "org.junit.jupiter:junit-jupiter-engine:5.2.0"
testCompile "org.junit.platform:junit-platform-launcher:1.2.0"
}
test {
useJUnitPlatform()
}