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'
139
14- repositories {
15- maven { url ' https://oss.jfrog.org/libs-snapshot' }
16- }
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+ }
23+
24+ dependencies {
25+ compile ' org.reactivestreams:reactive-streams:1.0.0.final'
26+ compile ' org.agrona:Agrona:0.4.13'
1727
18- dependencies {
19- compile ' org.reactivestreams:reactive-streams:1.0.0.final'
20- compile ' org.agrona:Agrona:0.4.13'
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+ }
2132
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 '
33+ test {
34+ testLogging . showStandardStreams = true
35+ }
2536}
2637
2738// support for snapshot/final releases via versioned branch names like 1.x
@@ -33,12 +44,3 @@ nebulaRelease {
3344if (project. hasProperty(' release.useLastTag' )) {
3445 tasks. prepare. enabled = false
3546}
36-
37- test {
38- testLogging. showStandardStreams = true
39- }
40-
41- compileJava {
42- sourceCompatibility = 1.8
43- targetCompatibility = 1.8
44- }
0 commit comments