1apply 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 17 compile 'org.mockito:mockito-core:2.2.29' 18} 19