File: build.gradle

package info (click to toggle)
cava 0.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,528 kB
  • sloc: java: 33,355; xml: 343; sh: 128; makefile: 6
file content (16 lines) | stat: -rw-r--r-- 533 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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'
}