aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
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
+ }
+}