Skip to content

Commit a4c2288

Browse files
committed
Adding Automatic-Module-Names to the RS modules
1 parent 959676b commit a4c2288

File tree

5 files changed

+35
-1
lines changed

5 files changed

+35
-1
lines changed

api/build.gradle

+7-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
description = "reactive-streams"
1+
description = "reactive-streams"
2+
3+
jar {
4+
manifest {
5+
attributes('Automatic-Module-Name': 'org.reactivestreams.api')
6+
}
7+
}

examples/build.gradle

+7
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,11 @@ dependencies {
33
compile project(':reactive-streams')
44
testCompile project(':reactive-streams-tck')
55
}
6+
7+
jar {
8+
manifest {
9+
attributes('Automatic-Module-Name': 'org.reactivestreams.examples')
10+
}
11+
}
12+
613
test.useTestNG()

flow-adapters/build.gradle

+7
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ dependencies {
66
testCompile project(':reactive-streams-tck')
77
testCompile group: 'org.testng', name: 'testng', version: '5.14.10'
88
}
9+
10+
jar {
11+
manifest {
12+
attributes('Automatic-Module-Name': 'org.reactivestreams.flowadapters')
13+
}
14+
}
15+
916
test.useTestNG()
1017

1118
javadoc {

tck-flow/build.gradle

+7
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,11 @@ dependencies {
44
compile project(':reactive-streams-tck')
55
compile project(':reactive-streams-flow-adapters')
66
}
7+
8+
jar {
9+
manifest {
10+
attributes('Automatic-Module-Name': 'org.reactivestreams.tckflow')
11+
}
12+
}
13+
714
test.useTestNG()

tck/build.gradle

+7
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,11 @@ dependencies {
44
compile project(':reactive-streams')
55
compile project(':reactive-streams-examples')
66
}
7+
8+
jar {
9+
manifest {
10+
attributes('Automatic-Module-Name': 'org.reactivestreams.tck')
11+
}
12+
}
13+
714
test.useTestNG()

0 commit comments

Comments
 (0)