普通文本  |  19行  |  399 B

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.15.0', { exclude group: "net.bytebuddy" }
}