open-keychain/build.gradle

32 lines
855 B
Groovy
Raw Normal View History

2013-09-09 21:11:16 +02:00
buildscript {
repositories {
mavenCentral()
// need this for com.novoda:gradle-android-test-plugin:0.9.9-SNAPSHOT below (0.9.3 in repos doesn't work!)
// run ./install-custom-gradle-test-plugin.sh to pull the thing into the local repository
mavenLocal()
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
2014-06-28 20:15:19 +02:00
classpath 'com.android.tools.build:gradle:0.12.0'
classpath 'org.robolectric:robolectric-gradle-plugin:0.11.0'
classpath 'com.novoda:gradle-android-test-plugin:0.9.9-SNAPSHOT'
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
}
}