apply plugin: 'java'
apply from: "$rootDir/gradle/publishing.gradle"
version = VERSION_NAME
description = "Implementation of the Mockito API for use on the Android Dalvik VM"
targetCompatibility = '1.7'
sourceCompatibility = '1.7'
repositories {
jcenter()
}
dependencies {
compile project(":dexmaker")
compile 'org.mockito:mockito-core:2.2.29'
}