-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.gradle
108 lines (87 loc) · 3.74 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
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
98
99
100
101
102
103
104
105
106
107
108
buildscript {
ext {
//////////////////////////////////////////////////
// VERSIONS
// Android
androidBuildToolsVersion = '23.0.3'
androidCompileSdkVersion = 23
androidMinSdkVersion = 19
androidTargetSdkVersion = 23
// Desktop
// Libraries
androidSupportVersion = '24.2.0'
daggerVersion = '2.0.2'
flowVersion = '1.0.0-alpha'
javaxAnnotationVersion = '10.0-b28'
javaxInjectVersion = '1'
kotlinVersion = '1.0.3'
kotterKnifeVersion = '0.1.0-SNAPSHOT'
okHttpVersion = '3.2.0'
paperParcelVersion = '1.0.0-beta8'
phraseVersion = '1.1.0'
reduxKotlinVersion = '1.0.1'
reduxObservableKotlinVersion = '1.0.0'
reduxRxJavaKotlinVersion = '1.0.0'
retrofitVersion = '2.0.0'
rxAndroidVersion = '1.1.0'
rxBindingVersion = '0.4.0'
rxJavaVersion = '1.1.1'
// Testing
assertJVersion = '1.7.1'
jUnitVersion = '4.12'
mockitoVersion = '1.10.5'
//////////////////////////////////////////////////
// DEPENDENCIES
// Android
androidSupportCoreUi = "com.android.support:support-core-ui:$androidSupportVersion"
androidSupportAnnotations = "com.android.support:support-annotations:$androidSupportVersion"
androidSupportAppCompat = "com.android.support:appcompat-v7:$androidSupportVersion"
androidSupportDesign = "com.android.support:design:$androidSupportVersion"
androidSupportRecyclerView = "com.android.support:recyclerview-v7:$androidSupportVersion"
// Desktop
// Third-party
dagger = "com.google.dagger:dagger:$daggerVersion"
daggerCompiler = "com.google.dagger:dagger-compiler:$daggerVersion"
// flow = "com.squareup.flow:flow:$flowVersion"
flow = "com.github.novachevskyi:flow:node_uses_counter_fix-SNAPSHOT"
javaxAnnotation = "org.glassfish:javax.annotation:$javaxAnnotationVersion"
javaxInject = "javax.inject:javax.inject:$javaxInjectVersion"
kotlinStdLib = "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
kotterKnife = "com.jakewharton:kotterknife:$kotterKnifeVersion"
okHttpLoggingInterceptor = "com.squareup.okhttp3:logging-interceptor:$okHttpVersion"
paperParcel = "com.github.grandstaish.paperparcel:paperparcel-kotlin:$paperParcelVersion"
paperParcelCompiler = "com.github.grandstaish.paperparcel:compiler:$paperParcelVersion"
phrase = "com.squareup.phrase:phrase:$phraseVersion"
reduxKotlin = "com.github.pardom:redux-kotlin:$reduxKotlinVersion"
reduxObservableKotlin = "com.github.pardom:redux-observable-kotlin:$reduxObservableKotlinVersion"
reduxRxJavaKotlin = "com.github.pardom:redux-rxjava-kotlin:$reduxRxJavaKotlinVersion"
retrofit = "com.squareup.retrofit2:retrofit:$retrofitVersion"
retrofitAdapterRxJava = "com.squareup.retrofit2:adapter-rxjava:$retrofitVersion"
retrofitConverterMoshi = "com.squareup.retrofit2:converter-moshi:$retrofitVersion"
rxAndroid = "io.reactivex:rxandroid:$rxAndroidVersion"
rxBinding = "com.jakewharton.rxbinding:rxbinding-kotlin:$rxBindingVersion"
rxBindingDesign = "com.jakewharton.rxbinding:rxbinding-design-kotlin:$rxBindingVersion"
rxBindingSupportV4 = "com.jakewharton.rxbinding:rxbinding-support-v4-kotlin:$rxBindingVersion"
rxBindingAppCompatV7 = "com.jakewharton.rxbinding:rxbinding-appcompat-v7-kotlin:$rxBindingVersion"
rxJava = "io.reactivex:rxjava:$rxJavaVersion"
// Testing
assertJ = "org.assertj:assertj-core:$assertJVersion"
jUnit = "junit:junit:$jUnitVersion"
mockito = "org.mockito:mockito-core:$mockitoVersion"
}
repositories {
jcenter()
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0-beta3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
repositories {
jcenter()
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url 'https://jitpack.io' }
}
}