forked from malmstein/KataSuperHeroesAndroid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
59 lines (50 loc) · 1.15 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
}
}
allprojects {
repositories {
jcenter()
flatDir {
dirs '../aars'
}
maven { url "https://jitpack.io" }
}
apply plugin: 'checkstyle'
task checkstyle(type: Checkstyle) {
configFile file("${project.rootDir}/config/checkstyle.xml")
source 'src'
include '**/*.java'
exclude '**/gen/**'
classpath = files()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
// Sdk and tools
minSdkVersion = 16
targetSdkVersion = 23
compileSdkVersion = 23
buildToolsVersion = '23.0.3'
// Guava
guavaVersion = '19.0'
// App dependencies
supportLibraryVersion = '24.0.0'
picassoVersion = '2.5.2'
butterknifeVersion = '7.0.1'
daggerVersion = '2.0.2'
annotationVersion = '10.0-b28'
junitVersion = '4.12'
daggerMockVersion = '0.6.2'
dexmakerVersion = '1.2'
runnerVersion = '0.5'
rulesVersion = '0.5'
mockitoVersion = '1.10.19'
espressoVersion = '2.2.2'
}