Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.m2e.core/src/org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.m2e.core/src/org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory.java b/org.eclipse.m2e.core/src/org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory.java
index 34fbd5f5..82b2cd58 100644
--- a/org.eclipse.m2e.core/src/org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory.java
+++ b/org.eclipse.m2e.core/src/org/eclipse/m2e/core/internal/lifecyclemapping/LifecycleMappingFactory.java
@@ -1343,7 +1343,7 @@ public class LifecycleMappingFactory {
Map<String, AbstractProjectConfigurator> configurators = new LinkedHashMap<>(unsorted.size());
Map<String, IConfigurationElement> elements = getProjectConfiguratorExtensions();
try {
- ProjectConfigurationElementSorter sorter = new ProjectConfigurationElementSorter(elements);
+ ProjectConfigurationElementSorter sorter = new ProjectConfigurationElementSorter(unsorted.keySet(), elements);
List<String> sortedConfigurators = sorter.getSortedConfigurators();
log.debug("{} is configured by :", facade.getProject().getName());
for(String id : sortedConfigurators) {

Back to the top