Skip to content

Commit 31e958d

Browse files
committed
Added RxJava 1.0 submodule
1 parent 2b3f0dc commit 31e958d

File tree

4 files changed

+22
-1
lines changed

4 files changed

+22
-1
lines changed

build.gradle

+14
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ ext {
1111
// Network Transports
1212
nettyVersion = '4.0.26.Final'
1313

14+
// Composition Libraries
15+
rxjava1Version = '1.0.7'
16+
1417
// Testing
1518
mockitoVersion = '1.10.19'
1619
junitVersion = '4.12'
@@ -98,6 +101,17 @@ project('reactive-ipc-netty4') {
98101
}
99102
}
100103

104+
project('reactive-ipc-rxjava1') {
105+
description = 'Reactive IPC Composition Layer Implementation'
106+
dependencies {
107+
// ripc-tcp
108+
compile project(":reactive-ipc-netty4")
109+
110+
// RxJava 1.0
111+
compile "io.reactivex:rxjava:$rxjava1Version"
112+
}
113+
}
114+
101115
configure(rootProject) {
102116
description = "Reactive Streams IPC"
103117

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/**
2+
*
3+
*/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/**
2+
*
3+
*/

settings.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ rootProject.name = 'reactive-ipc'
22

33
include 'reactive-ipc-core',
44
'reactive-ipc-tcp',
5-
'reactive-ipc-netty4'
5+
'reactive-ipc-netty4',
6+
'reactive-ipc-rxjava1'

0 commit comments

Comments
 (0)