summaryrefslogtreecommitdiff
path: root/build-system/tests/mavenLocal/app/build.gradle
blob: dcc54fe7af2a35e318f58e9ddc9716b61dccec1c (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
26
buildscript {
    repositories {
        maven { url '../../../../../../out/repo' }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.11.2'
    }
}

apply plugin: 'android'
apply plugin: 'maven'

repositories {
    mavenLocal()
    mavenCentral()
}

dependencies {
    compile 'com.example.android.multiproject:lib:1.0'
}

android {
    compileSdkVersion 19
    buildToolsVersion '19.1.0'
}