2013-09-09 15:11:16 -04:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2014-06-04 04:22:05 -04: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 12:28:54 -04:00
|
|
|
classpath 'com.android.tools.build:gradle:0.12.2'
|
2013-09-09 15:11:16 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
2013-05-25 17:13:39 -04:00
|
|
|
|
|
|
|
task wrapper(type: Wrapper) {
|
2014-06-09 16:09:30 -04:00
|
|
|
gradleVersion = '1.12'
|
2014-03-06 11:32:00 -05:00
|
|
|
}
|
2014-07-11 13:19:49 -04:00
|
|
|
|
|
|
|
subprojects {
|
|
|
|
tasks.withType(Test) {
|
|
|
|
maxParallelForks = 1
|
|
|
|
}
|
|
|
|
}
|
2014-07-27 10:40:22 -04:00
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|
|
|
|
}
|