-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle
41 lines (30 loc) · 1005 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
31
32
33
34
35
36
37
38
39
40
41
apply plugin: 'groovy'
jar {
baseName = 'rx-legacy'
version = '0.0.1-SNAPSHOT'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile 'io.reactivex:rxjava:1.2.6'
compile 'io.reactivex.rxjava2:rxjava:2.0.6'
compile 'com.google.guava:guava:18.0'
compile 'org.apache.commons:commons-lang3:3.4'
compile 'ch.qos.logback:logback-classic:1.1.7'
compile 'org.slf4j:slf4j-api:1.7.21'
compile 'org.slf4j:jul-to-slf4j:1.7.21'
compile 'org.apache.camel:camel-rx:2.17.3'
compile 'org.apache.activemq:activemq-camel:5.14.0'
compile 'org.apache.activemq:activemq-client:5.14.0'
compile 'com.squareup.retrofit2:adapter-rxjava2:2.3.0'
compile 'com.squareup.retrofit2:converter-jackson:2.0.1'
compile 'com.squareup.okhttp3:logging-interceptor:3.8.0'
compile 'org.projectlombok:lombok:1.16.16'
testCompile 'junit:junit:4.12'
}
task wrapper(type: Wrapper) {
gradleVersion = '4.3.1'
}