1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: Build only the api module
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,9 +1,9 @@
rootProject.name = 'reactive-streams'
include ':reactive-streams'
-include ':reactive-streams-tck'
-include ':reactive-streams-examples'
+//include ':reactive-streams-tck'
+//include ':reactive-streams-examples'
project(':reactive-streams').projectDir = "$rootDir/api" as File
-project(':reactive-streams-tck').projectDir = "$rootDir/tck" as File
-project(':reactive-streams-examples').projectDir = "$rootDir/examples" as File
+//project(':reactive-streams-tck').projectDir = "$rootDir/tck" as File
+//project(':reactive-streams-examples').projectDir = "$rootDir/examples" as File
|