-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.gradle
35 lines (27 loc) · 1.41 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
group 'com.github.zouzhberk.study'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
// https://mvnrepository.com/artifact/io.reactivex.rxjava2/rxjava
compile group: 'io.reactivex.rxjava2', name: 'rxjava', version: '2.0.1'
// https://mvnrepository.com/artifact/io.projectreactor/reactor-core
compile group: 'io.projectreactor', name: 'reactor-core', version: '3.0.3.RELEASE'
//// https://mvnrepository.com/artifact/com.typesafe.akka/akka-stream_2.12
// compile group: 'com.typesafe.akka', name: 'akka-stream_2.12', version: '2.4.14'
//// https://mvnrepository.com/artifact/io.reactivex/rxjava-math
// compile group: 'io.reactivex', name: 'rxjava-math', version: '1.0.0'
//// https://mvnrepository.com/artifact/io.reactivex/rxjava-debug
// compile group: 'io.reactivex', name: 'rxjava-debug', version: '1.0.3'
//// https://mvnrepository.com/artifact/io.reactivex/rxapache-http
// compile group: 'io.reactivex', name: 'rxapache-http', version: '0.21.0'
//// https://mvnrepository.com/artifact/io.reactivex/rxnetty
// compile group: 'io.reactivex', name: 'rxnetty', version: '0.5.1'
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:latest.version'
compile 'com.squareup.retrofit2:adapter-rxjava2:latest.version'
}