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

Possibility to customize Ignored Entries #1936

Conversation

esteban-aliverti
Copy link
Contributor

Related to #1934

  • Add support for element in the configuration of quarkus-maven-plugin
  • Add the possibility to specify extra Ignored Entries into RunnerJarPhase.

…arkus-maven-plugin

- Add the possibility to specify extra Ignored Entries into RunnerJarPhase.

final Set<String> finalIgnoredEntries = Stream
.concat(IGNORED_ENTRIES.stream(), this.userConfiguredIgnoredEntries.stream())
.collect(toSet());
Copy link
Contributor

Choose a reason for hiding this comment

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

Set<String> finalIgnoredEntries = new HashSet<>(IGNORED_ENTRIES);
finalIgnoredEntries.addAll(this.userConfiguredIgnoredEntries);

would do the same trick, no? :-)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yes it will.
I'm preparing another PR that will replace this one. I'll include this change in the new PR.

@esteban-aliverti
Copy link
Contributor Author

This is the new PR: #2023

@esteban-aliverti esteban-aliverti deleted the issue-1934_extra_entries_filter_in_jar branch April 12, 2019 07:27
@Sanne Sanne added this to the 0.14.0 milestone Apr 12, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants