You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
659 B
31 lines
659 B
buildscript {
|
|
repositories {
|
|
maven {
|
|
url "https://plugins.gradle.org/m2/"
|
|
}
|
|
}
|
|
dependencies {
|
|
classpath "net.ltgt.gradle:gradle-errorprone-plugin:0.0.13"
|
|
}
|
|
}
|
|
|
|
apply plugin: "net.ltgt.errorprone"
|
|
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 {
|
|
implementation project(':dexmaker')
|
|
|
|
implementation 'org.mockito:mockito-core:2.25.0', { exclude group: 'net.bytebuddy' }
|
|
}
|