-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
44 lines (39 loc) · 1.4 KB
/
build.gradle
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
ext {
appcompat = 'com.android.support:appcompat-v7:23.0.1'
assertj = 'org.assertj:assertj-core:1.7.0'
butterknife = 'com.jakewharton:butterknife:7.0.1'
cardView = 'com.android.support:cardview-v7:21.0.+'
dagger = 'com.google.dagger:dagger:2.0'
daggerCompiler = 'com.google.dagger:dagger-compiler:2.0'
lombok = 'org.projectlombok:lombok:1.16.2'
javaxAnnotations = 'javax.annotation:jsr250-api:1.0'
junit4 = 'junit:junit:4.12'
mockito = 'org.mockito:mockito-all:1.10.19'
ottoBus = 'com.squareup:otto:1.3.8'
robolectric = 'org.robolectric:robolectric:3.0'
robolectricShadowsSupport = 'org.robolectric:shadows-support-v4:3.0'
rxAndroid = 'io.reactivex:rxandroid:1.0.1'
rxJava = 'io.reactivex:rxjava:1.0.14'
supportDesign = 'com.android.support:design:23.0.1'
qrZxing = 'com.google.zxing:core:3.2.1'
}
task clean(type: Delete) {
delete rootProject.buildDir
}