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
This commit is contained in:
Art O Cathain 2014-07-27 15:40:22 +01:00
parent 45722d7cfb
commit 2291fef7c1
1 changed files with 9 additions and 0 deletions

View File

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