@@ -11,12 +11,12 @@ try {
11
11
Class . forName(" java.util.concurrent.Flow" )
12
12
jdkFlow = true
13
13
println (ANSI_GREEN + " INFO: ------------------ JDK9 classes detected ---------------------------------" + ANSI_RESET )
14
- println (ANSI_GREEN + " INFO: Java 9 Flow API found; Including [flow-adapters, tck-flow] in build. " + ANSI_RESET )
14
+ println (ANSI_GREEN + " INFO: Java 9 Flow API found; Including [tck-flow] & FlowAdapters in build. " + ANSI_RESET )
15
15
println (ANSI_GREEN + " INFO: --------------------------------------------------------------------------" + ANSI_RESET )
16
16
} catch (Throwable ex) {
17
17
// Flow API not available
18
18
println (ANSI_RED + " WARNING: -------------------- JDK9 classes NOT detected -----------------------------" + ANSI_RESET )
19
- println (ANSI_RED + " WARNING: Java 9 Flow API not found; Not including [flow-adapters, tck-flow] in build." + ANSI_RESET )
19
+ println (ANSI_RED + " WARNING: Java 9 Flow API not found; Not including [tck-flow] & FlowAdapters in build." + ANSI_RESET )
20
20
println (ANSI_RED + " WARNING: In order to execute the complete test-suite run the build using JDK9+. " + ANSI_RESET )
21
21
println (ANSI_RED + " WARNING: ----------------------------------------------------------------------------" + ANSI_RESET )
22
22
}
@@ -26,14 +26,12 @@ include ':reactive-streams-tck'
26
26
include ' :reactive-streams-examples'
27
27
28
28
if (jdkFlow) {
29
- include ' :reactive-streams-flow-adapters'
30
29
include ' :reactive-streams-tck-flow'
31
30
}
32
31
33
32
project(' :reactive-streams' ). projectDir = " $rootDir /api" as File
34
33
project(' :reactive-streams-tck' ). projectDir = " $rootDir /tck" as File
35
34
project(' :reactive-streams-examples' ). projectDir = " $rootDir /examples" as File
36
35
if (jdkFlow) {
37
- project(' :reactive-streams-flow-adapters' ). projectDir = " $rootDir /flow-adapters" as File
38
36
project(' :reactive-streams-tck-flow' ). projectDir = " $rootDir /tck-flow" as File
39
37
}
0 commit comments