aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
blob: 06036785b123e2431561e2ea6fbae8327b09f9c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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()
    }

    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:0.12.0'
        classpath 'org.robolectric:robolectric-gradle-plugin:0.11.0'
        classpath 'com.novoda:gradle-android-test-plugin:0.9.9-SNAPSHOT'
    }
}

allprojects {
    repositories {
        mavenCentral()
    }
}

task wrapper(type: Wrapper) {
    gradleVersion = '1.12'
}