forked from SusurroYGrito/rx-android-tefcon-2015
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
30 lines (27 loc) · 812 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
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.1'
classpath 'me.tatarka:gradle-retrolambda:3.2.3'
}
}
allprojects {
ext {
androidAppcompat = 'com.android.support:appcompat-v7:22.1.1'
libRx = 'io.reactivex:rxjava:1.0.14'
libRxAndroid = 'io.reactivex:rxandroid:1.0.1'
libRxAndroidBinding = 'com.jakewharton.rxbinding:rxbinding:0.3.0'
libOtto = 'com.squareup:otto:1.3.7'
libRenderer = 'com.github.pedrovgs:renderers:1.4'
libJunit = 'junit:junit:4.10'
libMockito = 'org.mockito:mockito-core:1.10.19'
libAssertj = 'org.assertj:assertj-core:1.6.1'
}
repositories {
jcenter()
mavenCentral()
}
}