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 + } +}