open-keychain/build.gradle
Art O Cathain 2291fef7c1 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
2014-07-27 15:40:22 +01:00

36 lines
730 B
Groovy

buildscript {
repositories {
mavenCentral()
}
dependencies {
// NOTE: Always use fixed version codes not dynamic ones, e.g. 0.7.3 instead of 0.7.+, see README for more information
classpath 'com.android.tools.build:gradle:0.12.0'
}
}
allprojects {
repositories {
mavenCentral()
}
}
task wrapper(type: Wrapper) {
gradleVersion = '1.12'
}
subprojects {
tasks.withType(Test) {
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
}
}