summaryrefslogtreecommitdiff
path: root/build-system/tests/multiproject/build.gradle
blob: e077753280c6e9072ce23216c1fc47435db891b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
buildscript {
    repositories {
        maven { url '../../../../../out/repo' }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.12.1'
    }
}

allprojects {
    version = '1.0'

    repositories {
        mavenCentral()
    }
}

apply plugin: 'android-reporting'