Fix automatic unit tests

This commit is contained in:
Nathan Adams 2018-05-02 11:24:29 +02:00
parent 0b2414808e
commit 956b25d391

View file

@ -19,12 +19,12 @@ repositories {
dependencies { dependencies {
api 'com.google.guava:guava:21.0' api 'com.google.guava:guava:21.0'
testImplementation 'junit:junit-dep:4.10' testCompile 'junit:junit-dep:4.10'
testImplementation 'org.hamcrest:hamcrest-library:1.2.1' testCompile 'org.hamcrest:hamcrest-library:1.2.1'
testImplementation 'org.mockito:mockito-core:1.8.5' testCompile 'org.mockito:mockito-core:1.8.5'
testImplementation 'com.google.guava:guava-testlib:21.0' testCompile 'com.google.guava:guava-testlib:21.0'
testImplementation 'org.openjdk.jmh:jmh-core:1.19' testCompile 'org.openjdk.jmh:jmh-core:1.19'
testImplementation 'org.openjdk.jmh:jmh-generator-annprocess:1.19' testCompile 'org.openjdk.jmh:jmh-generator-annprocess:1.19'
} }
task sourcesJar(type: Jar) { task sourcesJar(type: Jar) {