forked from nurkiewicz/rxjava-book-examples
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle
64 lines (47 loc) · 2.16 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
plugins {
id 'com.github.ben-manes.versions' version '0.20.0'
}
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
jcenter()
}
dependencies {
testCompile 'io.reactivex:rxjava:1.3.8'
testCompile 'io.reactivex.rxjava2:rxjava:2.2.4'
testCompile 'io.reactivex:rxnetty-http:0.5.2'
testCompile 'io.netty:netty-all:4.1.32.Final'
testCompile 'com.netflix.hystrix:hystrix-core:1.5.18'
testCompile 'com.netflix.hystrix:hystrix-metrics-event-stream:1.5.18'
testCompile 'com.google.guava:guava:27.0.1-jre'
testCompile 'org.apache.commons:commons-collections4:4.2'
testCompile 'org.apache.commons:commons-lang3:3.8.1'
testCompile 'commons-dbutils:commons-dbutils:1.7'
testCompile 'commons-io:commons-io:2.6'
testCompile 'ch.qos.logback:logback-classic:1.2.3'
testCompile 'org.slf4j:slf4j-api:1.7.25'
testCompile 'io.dropwizard:dropwizard-metrics:1.3.7'
testCompile 'org.springframework:spring-context:4.3.21.RELEASE'
testCompile 'org.springframework:spring-jms:4.3.21.RELEASE'
testCompile 'org.springframework:spring-jdbc:4.3.21.RELEASE'
testCompile 'com.google.android:android:4.1.1.4'
// testCompile 'com.jakewharton.rxbinding:rxbinding:0.4.0'
testCompile 'org.postgresql:postgresql:9.4-1206-jdbc42'
testCompile 'org.twitter4j:twitter4j-stream:4.0.7'
testCompile 'com.ning:async-http-client:1.9.40'
testCompile 'javax.jms:jms-api:1.1-rev-1'
testCompile 'org.eclipse.jetty:jetty-servlet:9.4.14.v20181114'
testCompile 'com.couchbase.client:java-client:2.7.2'
testCompile 'org.mongodb:mongodb-driver-rx:1.5.0'
testCompile 'org.apache.camel:camel-rx:2.23.0'
testCompile 'org.apache.camel:camel-kafka:2.23.0'
testCompile 'org.apache.activemq:activemq-camel:5.15.8'
testCompile 'org.apache.activemq:activemq-client:5.15.8'
testCompile 'com.squareup.retrofit2:adapter-rxjava:2.5.0'
testCompile 'com.squareup.retrofit2:adapter-rxjava2:2.5.0'
testCompile 'com.squareup.retrofit2:converter-jackson:2.5.0'
testCompile 'junit:junit:4.12'
testCompile 'org.assertj:assertj-core:3.11.1'
testCompile 'org.mockito:mockito-core:2.23.4'
}