description = 'Utilities for better junit testing.'
dependencies {
compile project(':io')
compileOnly 'com.github.kstyrc:embedded-redis'
compileOnly 'io.vertx:vertx-core'
compileOnly 'org.bouncycastle:bcprov-jdk15on'
compileOnly 'org.junit.jupiter:junit-jupiter-api'
testCompile 'com.github.kstyrc:embedded-redis'
testCompile 'io.lettuce:lettuce-core'
testCompile 'org.junit.jupiter:junit-jupiter-api'
testCompile 'org.junit.jupiter:junit-jupiter-params'
testRuntime 'org.junit.jupiter:junit-jupiter-engine'
}
|