From e2fefee71d9bc7227a980a51eefc02f67e97c0c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20Karnok?= Date: Tue, 24 Aug 2021 21:08:06 +0200 Subject: [PATCH] 3.x: Specify proper OSGi unique bundle symbolic name --- build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 7c8a718417..93eaf941d6 100644 --- a/build.gradle +++ b/build.gradle @@ -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" ) }