Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable testing for ExtensiblePlugins using classpath plugins #16908

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Load extensions for classpath plugins
Signed-off-by: Craig Perkins <cwperx@amazon.com>
  • Loading branch information
cwperks committed Dec 14, 2024
commit 44a404281375cc6cb1752e7d4a56f53ec7cee68b
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public PluginsService(
"1.8",
pluginClass.getName(),
null,
Collections.emptyList(),
classpathPlugins.stream().map(Class::getName).filter(cp -> !pluginClass.getName().equals(cp)).collect(Collectors.toList()),
false
);
if (logger.isTraceEnabled()) {
Expand All @@ -159,6 +159,7 @@ public PluginsService(
pluginsLoaded.add(new Tuple<>(pluginInfo, plugin));
pluginsList.add(pluginInfo);
pluginsNames.add(pluginInfo.getName());
loadExtensions(pluginsLoaded);
}

Set<Bundle> seenBundles = new LinkedHashSet<>();
Expand Down