|
1 | 1 | 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' } |
4 | 4 | } |
5 | 5 |
|
6 | 6 | description = 'ReactiveSocket: stream oriented messaging passing with Reactive Stream semantics.' |
7 | 7 |
|
8 | 8 | apply plugin: 'reactivesocket-project' |
9 | 9 |
|
10 | 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' |
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 | + } |
36 | 41 | } |
37 | 42 |
|
38 | 43 | // support for snapshot/final releases via versioned branch names like 1.x |
|
0 commit comments