Skip to content

Commit 9a300c7

Browse files
committed
Migrate root project into a subproject
1 parent b768d7a commit 9a300c7

File tree

99 files changed

+27
-24
lines changed

Some content is hidden

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

99 files changed

+27
-24
lines changed

build.gradle

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,38 @@
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'
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 {
3344
if (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-
}

core/build.gradle

Whitespace-only changes.

0 commit comments

Comments
 (0)