Skip to content

Commit 1b13180

Browse files
committed
Migrate reactivesocket-java-impl here
2 parents 9a300c7 + 8bb71c0 commit 1b13180

File tree

228 files changed

+13424
-34
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

228 files changed

+13424
-34
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ cache:
1919
directories:
2020
- $HOME/.m2
2121
- $HOME/.gradle
22-
22+
2323
env:
2424
global:
2525
- secure: cXHzd2WHqmdmJEyEKlELt8Rp9qCvhTRXTEHpQz0sKt55KorI8vO33sSOBs8uBqknWgGgOzHsB7cw0dJRxCmW+BRy90ELtdg/dVLzU8D8BrI6/DHzd/Bhyt9wx2eVdLmDV7lQ113AqJ7lphbH+U8ceTBlbNYDPKcIjFhsPO0WcPxQYed45na8XRK0UcAOpVmmNlTE6fHy5acQblNO84SN6uevCFqWAZJY7rc6xGrzFzca+ul5kR8xIzdE5jKs2Iw0MDeWi8cshkhj9c0FDtfsNIB1F+NafDtEdqjt6kMqYAUUiTAM2QdNoffzgmWEbVOj3uvthlm+S11XaU3Cn2uC7CiZTn2ebuoqCuV5Ge6KQI0ysEQVUfLhIF7iJG6dJvoyYy8ta8LEcjcsYAdF34BVddoUJkp+eJuhlto2aTZsDdXpmnwRM1PPDRoyrLjRcKiWYPR2tO2RG9sb0nRAGEpHTDd5ju2Ta4zpvgpWGUiKprs5R+YY7TEg16VSTYMmCJj5C9ap2lYIH4EoxsQpuxYig9AV1sOUJujLSa4TXqlcOmSM0IkHJ/i0VE8TZg4nV4XowyH6nKZ63InF4pUDcG13BpJQyTFKbK2D0lFn8MzpWvIV2oOUxNkOaOBg9cGhAnv9Sfw/Iv1UVaUgCNQd2M0R0rwfJoPCg2mmWVxsvh3cW4M=

README.md

Lines changed: 2 additions & 3 deletions

build.gradle

Lines changed: 32 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,43 @@
11
buildscript {
2-
repositories { jcenter() }
3-
dependencies { classpath 'io.reactivesocket:gradle-nebula-plugin-reactivesocket:1.0.6' }
2+
repositories { jcenter() }
3+
dependencies { classpath 'io.reactivesocket:gradle-nebula-plugin-reactivesocket:1.0.6' }
44
}
55

66
description = 'ReactiveSocket: stream oriented messaging passing with Reactive Stream semantics.'
77

88
apply plugin: 'reactivesocket-project'
99

1010
subprojects {
11-
apply plugin: 'reactivesocket-project'
12-
apply plugin: 'java'
13-
14-
compileJava {
15-
sourceCompatibility = 1.8
16-
targetCompatibility = 1.8
17-
}
18-
19-
repositories {
20-
jcenter()
21-
maven { url 'https://oss.jfrog.org/libs-snapshot' }
22-
}
23-
24-
dependencies {
25-
compile 'org.reactivestreams:reactive-streams:1.0.0.final'
26-
compile 'org.agrona:Agrona:0.4.13'
27-
28-
testCompile 'io.reactivex:rxjava:2.0.0-DP0-20151003.214425-143'
29-
testCompile 'junit:junit:4.12'
30-
testCompile 'org.mockito:mockito-core:1.10.19'
31-
}
32-
33-
test {
34-
testLogging.showStandardStreams = true
35-
}
11+
apply plugin: 'reactivesocket-project'
12+
apply plugin: 'java'
13+
14+
compileJava {
15+
sourceCompatibility = 1.8
16+
targetCompatibility = 1.8
17+
}
18+
19+
repositories {
20+
jcenter()
21+
maven { url 'https://oss.jfrog.org/libs-snapshot' }
22+
maven { url 'https://dl.bintray.com/reactivesocket/ReactiveSocket' }
23+
}
24+
25+
dependencies {
26+
compile 'org.reactivestreams:reactive-streams:1.0.0.final'
27+
compile 'org.agrona:Agrona:0.4.13'
28+
compile 'io.reactivex:rxjava:latest.release'
29+
compile 'io.reactivex:rxjava-reactive-streams:latest.release'
30+
compile 'org.hdrhistogram:HdrHistogram:latest.release'
31+
compile 'org.slf4j:slf4j-api:latest.release'
32+
33+
testCompile 'junit:junit:4.12'
34+
testCompile 'org.mockito:mockito-core:1.10.19'
35+
testRuntime 'org.slf4j:slf4j-simple:1.7.12'
36+
}
37+
38+
test {
39+
testLogging.showStandardStreams = true
40+
}
3641
}
3742

3843
// support for snapshot/final releases via versioned branch names like 1.x

core/build.gradle

Whitespace-only changes.

gradle/wrapper/gradle-wrapper.jar

1 Byte
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Mon Mar 07 16:10:12 PST 2016
1+
#Tue Mar 15 03:05:19 MSK 2016
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.11-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.12-bin.zip

rs-core/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dependencies {
2+
testCompile 'io.reactivex:rxjava:2.0.0-DP0-20151003.214425-143'
3+
}

0 commit comments

Comments
 (0)