aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorArt O Cathain <art.home@gmail.com>2014-07-27 15:40:22 +0100
committerArt O Cathain <art.home@gmail.com>2014-07-27 15:40:22 +0100
commit2291fef7c193bd51852105a5dd398eac6804a824 (patch)
treeae6b92913864bd09b4c4e72c618e3d22cf719006 /build.gradle
parent45722d7cfbb2996ff994b3f2143e5871c2e564ba (diff)
downloadopen-keychain-2291fef7c193bd51852105a5dd398eac6804a824.tar.gz
open-keychain-2291fef7c193bd51852105a5dd398eac6804a824.tar.bz2
open-keychain-2291fef7c193bd51852105a5dd398eac6804a824.zip
Skip spongycastle tests in root project
This will make moving back to a pure SC/BC upstream easier since we don't need to change their source code
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle9
1 files changed, 9 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
index 05e90eb17..e4ca510d2 100644
--- a/build.gradle
+++ b/build.gradle
@@ -24,3 +24,12 @@ subprojects {
maxParallelForks = 1
}
}
+
+// Ignore tests for external dependency
+project(':extern:spongycastle') {
+ subprojects {
+ // Need to re-apply the plugin here otherwise the test property below can't be set.
+ apply plugin: 'java'
+ test.enabled = false
+ }
+}