aboutsummaryrefslogtreecommitdiff
path: root/dexmaker-mockito/build.gradle
blob: 46cdd8f60fb1beda100977deddc62fb4ca2f3270 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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.21.0', { exclude group: 'net.bytebuddy' }
}