aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorVincent Breitmoser <valodim@mugenguild.com>2014-07-09 15:53:18 +0200
committerVincent Breitmoser <valodim@mugenguild.com>2014-07-09 16:03:30 +0200
commit718acbf954b1318c6a90ba0f9c79e63f398fb498 (patch)
treec5c99374ed368d07348d17212527c4e86297f061 /build.gradle
parent9320d2d8a204496ace8f973a59594ccd698a2170 (diff)
downloadopen-keychain-718acbf954b1318c6a90ba0f9c79e63f398fb498.tar.gz
open-keychain-718acbf954b1318c6a90ba0f9c79e63f398fb498.tar.bz2
open-keychain-718acbf954b1318c6a90ba0f9c79e63f398fb498.zip
put unit tests into external module (CAVEAT)
this requires a more up to date version of gradle-android-test-plugin than is currently in the repositories. it must be added to the local maven repo using ./install-custom-gradle-test-plugin.sh before compiling.
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle4
1 files changed, 4 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
index ceb963cd8..06036785b 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,12 +1,16 @@
buildscript {
repositories {
mavenCentral()
+ // need this for com.novoda:gradle-android-test-plugin:0.9.9-SNAPSHOT below (0.9.3 in repos doesn't work!)
+ // run ./install-custom-gradle-test-plugin.sh to pull the thing into the local repository
+ mavenLocal()
}
dependencies {
// NOTE: Always use fixed version codes not dynamic ones, e.g. 0.7.3 instead of 0.7.+, see README for more information
classpath 'com.android.tools.build:gradle:0.12.0'
classpath 'org.robolectric:robolectric-gradle-plugin:0.11.0'
+ classpath 'com.novoda:gradle-android-test-plugin:0.9.9-SNAPSHOT'
}
}