Skip to content

Commit

Permalink
3.x: Specify proper OSGi unique bundle symbolic name (#7319)
Browse files Browse the repository at this point in the history
  • Loading branch information
akarnokd committed Aug 25, 2021
1 parent 80c83a4 commit 9de33ea
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,13 @@ jar {
bnd(
"Bundle-Name": "rxjava",
"Bundle-Vendor": "RxJava Contributors",
"Bundle-Description": "Reactive Extensions for the JVM a library for composing asynchronous and event-based programs using observable sequences for the Java VM.",
"Bundle-Description": "Reactive Extensions for the JVM - a library for composing asynchronous and event-based programs using observable sequences for the Java VM.",
"Import-Package": "!org.junit,!junit.framework,!org.mockito.*,!org.testng.*,*",
"Bundle-DocURL": "https://github.com/ReactiveX/RxJava",
"Eclipse-ExtensibleAPI": "true",
"Automatic-Module-Name": "io.reactivex.rxjava3",
"Export-Package": "!io.reactivex.rxjava3.internal.*, io.reactivex.rxjava3.*"
"Export-Package": "!io.reactivex.rxjava3.internal.*, io.reactivex.rxjava3.*",
"Bundle-SymbolicName": "io.reactivex.rxjava3.rxjava"
)
}

Expand Down

0 comments on commit 9de33ea

Please sign in to comment.