Skip to content

Commit

Permalink
[EAK-540] Handled the configuration-less plugin setup
Browse files Browse the repository at this point in the history
  • Loading branch information
smiakchilo committed Aug 20, 2024
1 parent f6c8183 commit 75bf38b
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ private void populateReferenceEntries(PluginSettings.Builder builder) {
.stream()
.filter(plugin -> PLUGIN_ARTIFACT_ID.equals(plugin.getArtifactId()))
.map(ConfigurationContainer::getConfiguration)
.filter(Xpp3Dom.class::isInstance)
.map(Xpp3Dom.class::cast)
.findFirst()
.orElse(null);
Expand Down

0 comments on commit 75bf38b

Please sign in to comment.