Skip to content

Commit faf001e

Browse files
committed
add example project
1 parent 7313f46 commit faf001e

File tree

5 files changed

+10
-23
lines changed

5 files changed

+10
-23
lines changed

build.gradle

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -98,14 +98,7 @@ subprojects {
9898

9999
compileJava.options.encoding = 'UTF-8'
100100

101-
javadoc {
102-
destinationDir = file("build/docs/java/api")
101+
javadoc {
103102
options.encoding = 'UTF-8'
104103
}
105-
}
106-
107-
project(':reactive-streams-tck') {
108-
dependencies {
109-
compile project(':reactive-streams-api')
110-
}
111-
}
104+
}

examples/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
description = 'reactive-streams-examples'
2+
dependencies {
3+
compile project(':reactive-streams-api')
4+
}

examples/build.sbt

Lines changed: 0 additions & 13 deletions
This file was deleted.

settings.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
rootProject.name = 'reactive-streams'
22
include ':reactive-streams-api'
33
include ':reactive-streams-tck'
4+
include ':reactive-streams-examples'
45

56
project(':reactive-streams-api').projectDir = "$rootDir/api" as File
6-
project(':reactive-streams-tck').projectDir = "$rootDir/tck" as File
7+
project(':reactive-streams-tck').projectDir = "$rootDir/tck" as File
8+
project(':reactive-streams-examples').projectDir = "$rootDir/example" as File

tck/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
description = 'reactive-streams-tck'
22
dependencies {
33
compile group: 'org.testng', name: 'testng', version:'5.14.10'
4+
compile project(':reactive-streams-api')
45
}
56
test.useTestNG()

0 commit comments

Comments
 (0)