blob: 96479c581ed8610b50a62b017ff7e078a9bc519e [file] [log] [blame]
Paul Duffinb8a58962017-03-15 14:14:35 +00001apply plugin: 'java'
2apply from: "$rootDir/gradle/publishing.gradle"
3
4version = VERSION_NAME
5description = "Implementation of the Mockito API for use on the Android Dalvik VM"
6
7targetCompatibility = '1.7'
8sourceCompatibility = '1.7'
9
10repositories {
11 jcenter()
12}
13
14dependencies {
15 compile project(":dexmaker")
16
Philip P. Moltmannd4a20562018-03-13 13:11:07 -070017 compile 'org.mockito:mockito-core:2.15.0', { exclude group: "net.bytebuddy" }
Paul Duffinb8a58962017-03-15 14:14:35 +000018}