File tree 4 files changed +40
-1
lines changed
4 files changed +40
-1
lines changed Original file line number Diff line number Diff line change
1
+ apply plugin : ' osgi'
2
+
1
3
description = ' reactive-streams-api'
4
+
5
+ jar {
6
+ manifest {
7
+ name = ' reactive-streams-api'
8
+ instruction ' Export-Package' , ' org.reactivestreams'
9
+ instruction ' Bundle-Vendor' , ' Reactive Streams SIG'
10
+ instruction ' Bundle-Description' , ' Reactive Streams API'
11
+ instruction ' Bundle-DocURL' , ' http://reactive-streams.org'
12
+ }
13
+ }
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ allprojects {
9
9
group = ' org.reactivestreams'
10
10
version = ' 1.0.0.M1'
11
11
12
-
12
+
13
13
gradle. projectsEvaluated {
14
14
tasks. withType(JavaCompile ) {
15
15
options. compilerArgs << " -Xlint:unchecked" << " -Xlint:deprecation"
Original file line number Diff line number Diff line change
1
+ apply plugin : ' osgi'
2
+
1
3
description = ' reactive-streams-examples'
4
+
2
5
dependencies {
3
6
compile project(' :reactive-streams-api' )
4
7
}
8
+
9
+ jar {
10
+ manifest {
11
+ name = ' reactive-streams-examples'
12
+ instruction ' Export-Package' , ' org.reactivestreams.examples'
13
+ instruction ' Bundle-Vendor' , ' Reactive Streams SIG'
14
+ instruction ' Bundle-Description' , ' Reactive Streams Examples'
15
+ instruction ' Bundle-DocURL' , ' http://reactive-streams.org'
16
+ }
17
+ }
Original file line number Diff line number Diff line change
1
+ apply plugin : ' osgi'
2
+
1
3
description = ' reactive-streams-tck'
4
+
2
5
dependencies {
3
6
compile group : ' org.testng' , name : ' testng' , version :' 5.14.10'
4
7
compile project(' :reactive-streams-api' )
5
8
}
9
+
10
+ jar {
11
+ manifest {
12
+ name = ' reactive-streams-tck'
13
+ instruction ' Export-Package' , ' org.reactivestreams.tck'
14
+ instruction ' Bundle-Vendor' , ' Reactive Streams SIG'
15
+ instruction ' Bundle-Description' , ' Reactive Streams TCK'
16
+ instruction ' Bundle-DocURL' , ' http://reactive-streams.org'
17
+ }
18
+ }
19
+
6
20
test. useTestNG()
You can’t perform that action at this time.
0 commit comments