1buildscript { 2 repositories { 3 maven { 4 url "https://plugins.gradle.org/m2/" 5 } 6 } 7 dependencies { 8 classpath "net.ltgt.gradle:gradle-errorprone-plugin:0.0.13" 9 } 10} 11 12apply plugin: "net.ltgt.errorprone" 13apply plugin: 'java' 14apply from: "$rootDir/gradle/publishing.gradle" 15 16version = VERSION_NAME 17description = "Implementation of the Mockito API for use on the Android Dalvik VM" 18 19targetCompatibility = '1.7' 20sourceCompatibility = '1.7' 21 22repositories { 23 jcenter() 24} 25 26dependencies { 27 implementation project(':dexmaker') 28 29 implementation 'org.mockito:mockito-core:2.25.0', { exclude group: 'net.bytebuddy' } 30} 31