open-keychain/build.gradle

36 lines
730 B
Groovy
Raw Normal View History

2013-09-09 21:11:16 +02:00
buildscript {
repositories {
mavenCentral()
}
dependencies {
2014-06-04 10:22:05 +02:00
// NOTE: Always use fixed version codes not dynamic ones, e.g. 0.7.3 instead of 0.7.+, see README for more information
2014-07-27 18:28:54 +02:00
classpath 'com.android.tools.build:gradle:0.12.2'
2013-09-09 21:11:16 +02:00
}
}
allprojects {
repositories {
mavenCentral()
}
}
2013-05-25 23:13:39 +02:00
task wrapper(type: Wrapper) {
gradleVersion = '1.12'
2014-03-06 17:32:00 +01:00
}
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
}
}