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.
19 lines
415 B
19 lines
415 B
description = "Mockito for Android" |
|
|
|
ext { |
|
artifactName = 'mockito-android' |
|
bintrayAutoPublish = true |
|
bintrayRepo = 'maven' |
|
mavenCentralSync = false |
|
} |
|
|
|
apply from: "$rootDir/gradle/java-library.gradle" |
|
|
|
dependencies { |
|
compile project.rootProject |
|
compile "net.bytebuddy:byte-buddy-android:1.6.5" |
|
} |
|
|
|
apply from: "$rootDir/gradle/publishable-java-library.gradle" |
|
|
|
tasks.javadoc.enabled = false
|
|
|