forked from dotintent/InfullMvpAndroid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
58 lines (52 loc) · 1.71 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.1.4-2'
repositories {
jcenter()
maven {
url "https://maven.infullmobile.com/public"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.infullmobile:toolkit:0.3.24'
}
}
allprojects {
repositories {
jcenter()
maven { url 'https://maven.infullmobile.com/public' }
mavenCentral()
}
buildscript {
repositories {
jcenter()
maven { url 'https://maven.infullmobile.com/public' }
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
allprojects {
repositories {
jcenter()
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
}
ext {
support_version = '25.3.1'
androidAppcompat = "com.android.support:appcompat-v7:$support_version"
androidDesign = "com.android.support:design:$support_version"
dagger = 'com.google.dagger:dagger:2.2'
daggerCompiler = 'com.google.dagger:dagger-compiler:2.2'
finbugsAnnotations = 'net.sourceforge.findbugs:annotations:1.3.2'
kotlinLanguageDependency = "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
assertJ = 'com.squareup.assertj:assertj-android:1.1.1'
junit = 'junit:junit:4.12'
mockito = 'org.mockito:mockito-all:2.0.2-beta'
robolectric = 'org.robolectric:robolectric:3.4-rc2'
robolectricShadows = 'org.robolectric:shadows-support-v4:3.4-rc2'
}