Community
Participate
Working Groups
Starting the RWT-OSGI integration bundle on Apache Karaf result in an error, because the RWT-OSGI integration bundle imports the package org.osgi.service.http with the version range [1.2.1,2.0.0). Apache Karaf uses Pax Web for this service and Pax Web exports the package org.osgi.service.http with the version 1.2 In the OSGi Service Platform Enterprise Specification,Release 4, Version 4.2" is following example: Import-Package: org.osgi.service.http; version="[1.2,2.0)
To me the version range seems unnecessarily constrained. A quick check with [1.2.0,2.0.0) worked well (with Equinox 3.7). @Frank: was there a specific reason to have 1.2.1 as the lower version bound or can we use [1.2.0,2.0.0)?
(In reply to comment #1) > To me the version range seems unnecessarily constrained. A quick check with > [1.2.0,2.0.0) worked well (with Equinox 3.7). > > @Frank: was there a specific reason to have 1.2.1 as the lower version bound or > can we use [1.2.0,2.0.0)? If there was any I can't remember it. Probably this was the version of the target I developed against. So if it works it should be fine to use [1.2.0,2.0.0).
Changed as suggested. Will be available in 1.5 M4 and with the next nightly build.