-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
44 lines (35 loc) · 1020 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
39
40
41
42
43
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlinVersion = '1.2.30'
ext.realmVersion = '5.0.0'
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'
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradlePluginVersion"
classpath "io.realm:realm-gradle-plugin:$realmVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
apply plugin: 'java'
apply plugin: 'jacoco'
sourceCompatibility = 1.7
targetCompatibility = 1.7
allprojects {
repositories {
google()
jcenter()
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
}
check.dependsOn jacocoTestReport