Skip to content

Commit

Permalink
rolling back workflow changes
Browse files Browse the repository at this point in the history
Signed-off-by: Arun Venmany <[email protected]>
  • Loading branch information
arunvenmany-ibm committed Jan 15, 2025
1 parent 23c34e6 commit b03668f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public static Xpp3Dom getPluginGoalConfig(Plugin plugin, String goal, Log log) {
int numExec = 0;

List<PluginExecution> executions = plugin.getExecutions()
.stream().sorted(Comparator.comparing(PluginExecution::getPriority)).collect(Collectors.toList());
.stream().sorted(Comparator.comparing(PluginExecution::getPriority).reversed()).collect(Collectors.toList());
if (!executions.isEmpty()) {
for (PluginExecution e : executions) {
if (e.getGoals() != null && e.getGoals().contains(goal)) {
Expand Down

0 comments on commit b03668f

Please sign in to comment.