aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain-Test/build.gradle
diff options
context:
space:
mode:
authorVincent Breitmoser <valodim@mugenguild.com>2014-07-21 03:59:16 +0200
committerVincent Breitmoser <valodim@mugenguild.com>2014-07-21 03:59:28 +0200
commitf560bc9317357a755b5862c1eec142b7c4665c0a (patch)
tree0e919ae510251a3dfad9be96d3625e856d9eb594 /OpenKeychain-Test/build.gradle
parent527c3e93f8c570096f52d8ae5bc3ce68bef96269 (diff)
downloadopen-keychain-f560bc9317357a755b5862c1eec142b7c4665c0a.tar.gz
open-keychain-f560bc9317357a755b5862c1eec142b7c4665c0a.tar.bz2
open-keychain-f560bc9317357a755b5862c1eec142b7c4665c0a.zip
forgot to move test classpath out of root project
Diffstat (limited to 'OpenKeychain-Test/build.gradle')
-rw-r--r--OpenKeychain-Test/build.gradle14
1 files changed, 14 insertions, 0 deletions
diff --git a/OpenKeychain-Test/build.gradle b/OpenKeychain-Test/build.gradle
index a00268c59..a98a79dc1 100644
--- a/OpenKeychain-Test/build.gradle
+++ b/OpenKeychain-Test/build.gradle
@@ -1,3 +1,17 @@
+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.novoda:gradle-android-test-plugin:0.9.9-SNAPSHOT'
+ }
+}
+
apply plugin: 'java'
apply plugin: 'android-test'
apply plugin: 'jacoco'