Skip to content

Commit f361483

Browse files
authored
Merge pull request #541 from reactive-streams/wip-fix-540-Bundle-SymbolicName-√
Fixing #540 by manually overriding the Bundle-SymbolicName for the BN…
2 parents 793cd16 + 613ebcb commit f361483

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

api/build.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ jar {
2525
'Bundle-DocURL': 'http://reactive-streams.org',
2626
'Bundle-Version': project.version,
2727
'Export-Package': 'org.reactivestreams.*',
28-
'Automatic-Module-Name': 'org.reactivestreams'
28+
'Automatic-Module-Name': 'org.reactivestreams',
29+
'Bundle-SymbolicName': 'org.reactivestreams.reactive-streams'
2930
)
3031
}
3132

examples/build.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ jar {
1111
'Bundle-DocURL': 'http://reactive-streams.org',
1212
'Bundle-Version': project.version,
1313
'Export-Package': 'org.reactivestreams.example.*',
14-
'Automatic-Module-Name': 'org.reactivestreams.examples'
14+
'Automatic-Module-Name': 'org.reactivestreams.examples',
15+
'Bundle-SymbolicName': 'org.reactivestreams.examples'
1516
)
1617
}
1718

tck-flow/build.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ jar {
1111
'Bundle-DocURL': 'http://reactive-streams.org',
1212
'Bundle-Version': project.version,
1313
'Export-Package': 'org.reactivestreams.tck.flow.*',
14-
'Automatic-Module-Name': 'org.reactivestreams.tckflow'
14+
'Automatic-Module-Name': 'org.reactivestreams.tckflow',
15+
'Bundle-SymbolicName': 'org.reactivestreams.tckflow'
1516
)
1617
}
1718

tck/build.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ jar {
1212
'Bundle-DocURL': 'http://reactive-streams.org',
1313
'Bundle-Version': project.version,
1414
'Export-Package': 'org.reactivestreams.tck.*',
15-
'Automatic-Module-Name': 'org.reactivestreams.tck'
15+
'Automatic-Module-Name': 'org.reactivestreams.tck',
16+
'Bundle-SymbolicName': 'org.reactivestreams.tck'
1617
)
1718
}
1819

0 commit comments

Comments
 (0)