11buildscript {
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
96description = ' ReactiveSocket: stream oriented messaging passing with Reactive Stream semantics.'
107
118apply 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 {
3349if (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- }
0 commit comments