Fix test to use count down latch, fix whitespace
[tbgof.git] / build.gradle
1 apply plugin: 'java'
2
3 repositories {
4     mavenCentral()
5 }
6
7 dependencies {
8     compile "com.google.guava:guava:18.0"
9
10     testCompile "junit:junit:4.12"
11     testCompile "org.hamcrest:hamcrest-all:1.3"
12 }
13
14 apply from: "ide.gradle"
15 apply from: "coverage.gradle"
16
17 /* vim: set ts=4 sw=4 et: */