1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
apply from: "$rootDir/gradle/dependencies.gradle"
apply plugin: 'java'
description = "End-to-end tests for Mockito and its extensions."
repositories {
mavenLocal() //we depend on locally published mockito
}
dependencies {
testCompile project.rootProject
testCompile project(":junit-jupiter")
testCompile project(path: ':', configuration: 'testUtil')
testCompile libraries.junit4
testCompile libraries.assertj
testCompile libraries.junitJupiterApi
}
configurations.all {
//TODO SF enable when #154 is implemented
//let's make those tests not use hamcrest
//exclude group: 'org.hamcrest', module: 'hamcrest-core'
}
|