Skip to content

Commit

Permalink
Replace dependency to org.eclipse.osgi.services
Browse files Browse the repository at this point in the history
The bundle 'o.e.osgi.services' is deprecated for removal as part of
eclipse-equinox/equinox#18
and already has been changed to only re-export the 'official' OSGi
artifacts published to Maven-Central.

It should be replaced by imports of the desired org.osgi.service.*
packages so that the runtime can choose a suitable provider
independently of the bundle name.
  • Loading branch information
HannesWell authored and szarnekow committed Dec 20, 2023
1 parent 2b19d66 commit a292bf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions org.eclipse.xtend.ide/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ Require-Bundle: org.eclipse.xtend.core,
org.eclipse.xtext.xbase.lib;bundle-version="2.34.0",
org.eclipse.jdt.core.manipulation;bundle-version="1.16.0";resolution:=optional,
org.eclipse.e4.core.services,
org.eclipse.osgi.services,
org.eclipse.e4.ui.css.swt.theme;bundle-version="0.13.0"
Import-Package: org.apache.log4j;version="1.2.24"
Import-Package: org.apache.log4j;version="1.2.24",
org.osgi.service.event;version="[1.4.0,2.0.0)"
Bundle-RequiredExecutionEnvironment: JavaSE-11
Bundle-Activator: org.eclipse.xtend.ide.XtendActivator
Export-Package: org.eclipse.xtend.ide;x-internal:=true,
Expand Down

0 comments on commit a292bf9

Please sign in to comment.