2013-09-09 21:11:16 +02:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
2014-12-04 20:02:06 +01:00
|
|
|
jcenter()
|
2013-09-09 21:11:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2015-03-26 22:56:28 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:1.1.3'
|
2015-03-02 17:23:06 +01:00
|
|
|
classpath files('gradle-witness.jar')
|
2015-05-06 00:08:04 +02:00
|
|
|
// bintray dependency to satisfy dependency of openpgp-api lib
|
|
|
|
classpath 'com.novoda:bintray-release:0.2.7'
|
2013-09-09 21:11:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2014-12-04 20:02:06 +01:00
|
|
|
jcenter()
|
2013-09-09 21:11:16 +02:00
|
|
|
}
|
|
|
|
}
|
2013-05-25 23:13:39 +02:00
|
|
|
|
|
|
|
task wrapper(type: Wrapper) {
|
2015-03-23 20:17:30 +01:00
|
|
|
gradleVersion = '2.3'
|
2014-03-06 17:32:00 +01:00
|
|
|
}
|
2014-07-11 19:19:49 +02:00
|
|
|
|
2014-12-29 13:32:28 +01:00
|
|
|
subprojects {
|
|
|
|
tasks.withType(Test) {
|
2014-12-30 11:59:57 +01:00
|
|
|
maxParallelForks = 1
|
2014-12-29 13:32:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-27 15:40:22 +01: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
|
|
|
|
}
|
|
|
|
}
|
2015-03-02 16:21:51 +01:00
|
|
|
|
|
|
|
// SDK Version and Build Tools used by all subprojects
|
|
|
|
// See http://tools.android.com/tech-docs/new-build-system/tips#TOC-Controlling-Android-properties-of-all-your-modules-from-the-main-project.
|
|
|
|
ext {
|
2015-03-23 20:17:30 +01:00
|
|
|
compileSdkVersion = 22
|
|
|
|
buildToolsVersion = '22.0.1'
|
2015-03-02 16:21:51 +01:00
|
|
|
}
|