Home | History | Annotate | Download | only in dexmaker-mockito
      1 buildscript {
      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 
     12 apply plugin: "net.ltgt.errorprone"
     13 apply plugin: 'java'
     14 apply from: "$rootDir/gradle/publishing.gradle"
     15 
     16 version = VERSION_NAME
     17 description = "Implementation of the Mockito API for use on the Android Dalvik VM"
     18 
     19 targetCompatibility = '1.7'
     20 sourceCompatibility = '1.7'
     21 
     22 repositories {
     23     jcenter()
     24 }
     25 
     26 dependencies {
     27     implementation project(':dexmaker')
     28 
     29     implementation 'org.mockito:mockito-core:2.21.0', { exclude group: 'net.bytebuddy' }
     30 }
     31