Skip to content

Commit

Permalink
Add apache.aries.spifly.bundle to list of recommended auto-start bundles
Browse files Browse the repository at this point in the history
  • Loading branch information
HannesWell committed Aug 18, 2023
1 parent f42a151 commit 3fad91b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ public interface IPDEBuildConstants {
public static final String BUNDLE_SIMPLE_CONFIGURATOR = "org.eclipse.equinox.simpleconfigurator"; //$NON-NLS-1$
public static final String BUNDLE_DS = "org.eclipse.equinox.ds"; //$NON-NLS-1$
public static final String BUNDLE_FELIX_SCR = "org.apache.felix.scr"; //$NON-NLS-1$
public static final String BUNDLE_ARIES_SPIFLY = "org.apache.aries.spifly.dynamic.bundle"; //$NON-NLS-1$
public static final String FEATURE_PLATFORM_LAUNCHERS = "org.eclipse.platform.launchers"; //$NON-NLS-1$
public static final String FEATURE_EQUINOX_EXECUTABLE = "org.eclipse.equinox.executable"; //$NON-NLS-1$

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,8 @@ public static void addDefaultStartingBundle(Map<IPluginModelBase, String> map, I
IPDEBuildConstants.BUNDLE_EQUINOX_EVENT, 2, //
IPDEBuildConstants.BUNDLE_OSGI, 1, //
IPDEBuildConstants.BUNDLE_CORE_RUNTIME, 0, // zero means default
IPDEBuildConstants.BUNDLE_FELIX_SCR, 2); //
IPDEBuildConstants.BUNDLE_FELIX_SCR, 2, //
IPDEBuildConstants.BUNDLE_ARIES_SPIFLY, 2); //

public static String resolveSystemRunLevelText(BundleDescription description) {
return autoStartLevelToString(RECOMMENDED_AUTO_START_BUNDLE_LEVELS.get(description.getSymbolicName()));
Expand Down

0 comments on commit 3fad91b

Please sign in to comment.