summaryrefslogtreecommitdiff
path: root/build-system/tests/dependencyChecker/build.gradle
blob: 499f074242cd91fb84055ea5cfff9d8cf3e7d7e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
buildscript {
    repositories {
        maven { url '../../../../../out/repo' }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.11.1'
    }
}
apply plugin: 'android'

repositories {
  mavenCentral()
}

dependencies {
    compile 'org.apache.httpcomponents:httpclient:4.2.5'
}

android {
    compileSdkVersion 19
    buildToolsVersion '19.1.0'
}