Merge pull request #720 from artbristol/skip-bc-tests-externally

Skip spongycastle tests in root project
This commit is contained in:
Dominik Schürmann 2014-07-27 18:13:02 +02:00
commit 4eceb5bde1
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
}
}