-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathbuild.gradle
38 lines (33 loc) · 1022 Bytes
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply plugin: 'com.github.ben-manes.versions'
buildscript {
ext.kotlinVersion = '1.2.30'
ext.realmVersion = '4.3.4'
ext.gradlePluginVersion = '3.0.1'
ext.mockitoVersion = '2.15.0'
ext.powerMockVersion = '2.0.0-beta.5'
ext.supportLibVersion = '27.1.0'
ext.retrofitVersion = '2.3.0'
ext.okHttpVersion = '3.10.0'
ext.daggerVersion = '2.15'
ext.paperParcelVersion = '2.0.4'
repositories {
jcenter()
google()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradlePluginVersion"
classpath "io.realm:realm-gradle-plugin:$realmVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0'
}
}
allprojects {
repositories {
jcenter()
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}