Skip to content

Commit e83d1f9

Browse files
authored
Merge pull request #89 from ReactiveSocket/stevegury/project-aggregation
Aggregation of reactivesocket-java-impl into reactivesocket-java
2 parents b768d7a + e539270 commit e83d1f9

File tree

227 files changed

+13425
-32
lines changed

Some content is hidden

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

227 files changed

+13425
-32
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: 33 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,43 @@
11
buildscript {
2-
repositories {
3-
jcenter()
4-
}
5-
6-
dependencies { classpath 'io.reactivesocket:gradle-nebula-plugin-reactivesocket:1.0.5' }
2+
repositories { jcenter() }
3+
dependencies { classpath 'io.reactivesocket:gradle-nebula-plugin-reactivesocket:1.0.6' }
74
}
85

96
description = 'ReactiveSocket: stream oriented messaging passing with Reactive Stream semantics.'
107

118
apply plugin: 'reactivesocket-project'
12-
apply plugin: 'java'
13-
14-
repositories {
15-
maven { url 'https://oss.jfrog.org/libs-snapshot' }
16-
}
17-
18-
dependencies {
19-
compile 'org.reactivestreams:reactive-streams:1.0.0.final'
20-
compile 'org.agrona:Agrona:0.4.13'
219

22-
testCompile 'io.reactivex:rxjava:2.0.0-DP0-20151003.214425-143'
23-
testCompile 'junit:junit:4.12'
24-
testCompile 'org.mockito:mockito-core:1.10.19'
10+
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+
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+
}
2541
}
2642

2743
// support for snapshot/final releases via versioned branch names like 1.x
@@ -33,12 +49,3 @@ nebulaRelease {
3349
if (project.hasProperty('release.useLastTag')) {
3450
tasks.prepare.enabled = false
3551
}
36-
37-
test {
38-
testLogging.showStandardStreams = true
39-
}
40-
41-
compileJava {
42-
sourceCompatibility = 1.8
43-
targetCompatibility = 1.8
44-
}

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

reactivesocket-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)