Skip to content

Commit

Permalink
Merge pull request #541 from reactive-streams/wip-fix-540-Bundle-Symb…
Browse files Browse the repository at this point in the history
…olicName-√

Fixing #540 by manually overriding the Bundle-SymbolicName for the BN…
  • Loading branch information
rkuhn committed Aug 5, 2023
2 parents 793cd16 + 613ebcb commit f361483
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ jar {
'Bundle-DocURL': 'http://reactive-streams.org',
'Bundle-Version': project.version,
'Export-Package': 'org.reactivestreams.*',
'Automatic-Module-Name': 'org.reactivestreams'
'Automatic-Module-Name': 'org.reactivestreams',
'Bundle-SymbolicName': 'org.reactivestreams.reactive-streams'
)
}

3 changes: 2 additions & 1 deletion examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ jar {
'Bundle-DocURL': 'http://reactive-streams.org',
'Bundle-Version': project.version,
'Export-Package': 'org.reactivestreams.example.*',
'Automatic-Module-Name': 'org.reactivestreams.examples'
'Automatic-Module-Name': 'org.reactivestreams.examples',
'Bundle-SymbolicName': 'org.reactivestreams.examples'
)
}

Expand Down
3 changes: 2 additions & 1 deletion tck-flow/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ jar {
'Bundle-DocURL': 'http://reactive-streams.org',
'Bundle-Version': project.version,
'Export-Package': 'org.reactivestreams.tck.flow.*',
'Automatic-Module-Name': 'org.reactivestreams.tckflow'
'Automatic-Module-Name': 'org.reactivestreams.tckflow',
'Bundle-SymbolicName': 'org.reactivestreams.tckflow'
)
}

Expand Down
3 changes: 2 additions & 1 deletion tck/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ jar {
'Bundle-DocURL': 'http://reactive-streams.org',
'Bundle-Version': project.version,
'Export-Package': 'org.reactivestreams.tck.*',
'Automatic-Module-Name': 'org.reactivestreams.tck'
'Automatic-Module-Name': 'org.reactivestreams.tck',
'Bundle-SymbolicName': 'org.reactivestreams.tck'
)
}

Expand Down

0 comments on commit f361483

Please sign in to comment.