1 apply plugin: 'java' 2 apply from: "$rootDir/gradle/publishing.gradle" 3 4 version = VERSION_NAME 5 description = "Implementation of the Mockito API for use on the Android Dalvik VM" 6 7 targetCompatibility = '1.7' 8 sourceCompatibility = '1.7' 9 10 repositories { 11 jcenter() 12 } 13 14 dependencies { 15 compile project(":dexmaker") 16 17 compile 'org.mockito:mockito-core:2.2.29' 18 } 19