Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions ds/org.eclipse.pde.ds.tck/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ Bundle-ManifestVersion: 2
Bundle-Name: Component XML TCK
Bundle-SymbolicName: org.eclipse.pde.ds.tck
Bundle-Version: 1.0.0.qualifier
Import-Package: org.osgi.framework,
org.osgi.service.component,
org.osgi.service.component.propertytypes,
org.osgi.service.log
Service-Component: OSGI-INF/org.osgi.impl.bundle.component.annotations.HelloWorld10.xml,
Comment on lines 5 to 6
Copy link

Copilot AI Apr 28, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removing the Import-Package header entirely means this bundle will not be wired to any org.osgi.* packages at runtime. Since this project unpacks and builds the OSGi DS annotations TCK sources during the Maven build (see pom.xml unpack-dependencies + PDE build), the compiled classes are very likely to reference org.osgi.framework / DS / Log APIs and will fail with ClassNotFoundException at runtime if these packages are not imported. Please restore the required Import-Package entries (or switch to an automated manifest generation approach that computes them from the built classes) so the bundle resolves its API dependencies correctly.

Copilot uses AI. Check for mistakes.
OSGI-INF/testActivationFields.xml,
OSGI-INF/testComponentPropertyTypes.xml,
Expand Down
Loading