forked from nekuroporisu/nubank-android-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependencies.gradle
More file actions
97 lines (85 loc) · 4.57 KB
/
dependencies.gradle
File metadata and controls
97 lines (85 loc) · 4.57 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
allprojects {
repositories {
jcenter()
}
}
ext {
//Android Project Targets
minSDK = 21
targetSDK = 26
compileSDK = 26
buildToolsVersion = '26.0.2'
// Kotlin Support
kotlinJVMTarget = "1.6"
kotlinVersion = '1.2.0'
//Libraries
okHttpVersion = '3.8.0'
retrofitVersion = '2.3.0'
rxJavaVersion = '2.1.6'
rxAndroidVersion = '2.0.1'
supportLibraryVersion = '27.0.1'
archComponentsVersion = '1.0.3'
archExtensionsVersion = '1.0.0'
materialDialogsVersion = '0.9.6.0'
//Testing
jUnitVersion = '4.12'
assertJVersion = '3.8.0'
mockitoKotlinVersion = '1.5.0'
dexMakerVersion = '2.2.0'
roboletricVersion = '3.5.1'
espressoCoreVersion = '3.0.1'
espressoToolsVersion = '1.0.1'
baristaVersion = '1.7.0'
forceResolution = [
kotlin : "org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}",
kotlinReflect : "org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}",
espressoCore : "com.android.support.test.espresso:espresso-core:${espressoCoreVersion}",
espressoRunner: "com.android.support.test:runner:${espressoToolsVersion}",
espressoRules : "com.android.support.test:rules:${espressoToolsVersion}",
]
coreDependencies = [
kotlin : "org.jetbrains.kotlin:kotlin-stdlib-jre7:${kotlinVersion}",
kotlinReflect : "org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}",
rxJava : "io.reactivex.rxjava2:rxjava:${rxJavaVersion}",
retrofit : "com.squareup.retrofit2:retrofit:${retrofitVersion}",
retrofitRxJavaAdapter: "com.squareup.retrofit2:adapter-rxjava2:${retrofitVersion}",
retrofitGsonConverter: "com.squareup.retrofit2:converter-gson:${retrofitVersion}",
okHttpLogger : "com.squareup.okhttp3:logging-interceptor:${okHttpVersion}",
archRuntime : "android.arch.lifecycle:runtime:${archComponentsVersion}",
archExtensions : "android.arch.lifecycle:extensions:${archExtensionsVersion}",
]
coreTestDependencies = [
junit : "junit:junit:${jUnitVersion}",
mockito : "com.nhaarman:mockito-kotlin:${mockitoKotlinVersion}",
assertj : "org.assertj:assertj-core:${assertJVersion}",
roboletric : "org.robolectric:robolectric:${roboletricVersion}",
mockWebServer: "com.squareup.okhttp3:mockwebserver:${okHttpVersion}"
]
appDependencies = [
kotlin : "org.jetbrains.kotlin:kotlin-stdlib-jre7:${kotlinVersion}",
kotlinReflect : "org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}",
retrofit : "com.squareup.retrofit2:retrofit:${retrofitVersion}",
retrofitRxJavaAdapter: "com.squareup.retrofit2:adapter-rxjava2:${retrofitVersion}",
retrofitGsonConverter: "com.squareup.retrofit2:converter-gson:${retrofitVersion}",
okHttpLogger : "com.squareup.okhttp3:logging-interceptor:${okHttpVersion}",
rxJava : "io.reactivex.rxjava2:rxjava:${rxJavaVersion}",
rxAndroid : "io.reactivex.rxjava2:rxandroid:${rxAndroidVersion}",
appCompat : "com.android.support:appcompat-v7:${supportLibraryVersion}",
design : "com.android.support:design:${supportLibraryVersion}",
archRuntime : "android.arch.lifecycle:runtime:${archComponentsVersion}",
archExtensions : "android.arch.lifecycle:extensions:${archExtensionsVersion}",
materialDialogs : "com.afollestad.material-dialogs:core:${materialDialogsVersion}"
]
appTestDependencies = [
kotlin : "org.jetbrains.kotlin:kotlin-stdlib-jre7:${kotlinVersion}",
junit : "junit:junit:${jUnitVersion}",
assertj : "org.assertj:assertj-core:${assertJVersion}",
mockito : "com.nhaarman:mockito-kotlin:${mockitoKotlinVersion}",
mockitoDexMaker: "com.linkedin.dexmaker:dexmaker-mockito:${dexMakerVersion}",
roboletric : "org.robolectric:robolectric:${roboletricVersion}",
espressoRunner : "com.android.support.test:runner:${espressoToolsVersion}",
espressoRules : "com.android.support.test:rules:${espressoToolsVersion}",
espressoCore : "com.android.support.test.espresso:espresso-core:${espressoCoreVersion}",
barista : "com.schibsted.spain:barista:${baristaVersion}"
]
}