mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-04 16:25:05 -05:00
2a5ac4e67c
This reverts commit ce34192dbb
.
Conflicts:
build.gradle
36 lines
720 B
Groovy
36 lines
720 B
Groovy
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
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:1.0.0'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
task wrapper(type: Wrapper) {
|
|
gradleVersion = '2.2.1'
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|