Index: src/org/jboss/tools/maven/project/examples/wizard/ArchetypeExamplesWizardFirstPage.java =================================================================== --- src/org/jboss/tools/maven/project/examples/wizard/ArchetypeExamplesWizardFirstPage.java (revision 39821) +++ src/org/jboss/tools/maven/project/examples/wizard/ArchetypeExamplesWizardFirstPage.java (working copy) @@ -468,13 +468,6 @@ if (projectExample.getDescription() != null) { setDescription(ProjectExamplesActivator.getShortDescription(projectExample.getDescription())); } - ProjectImportConfiguration configuration = getImportConfiguration(); - if (configuration != null) { - String profiles = projectExample.getDefaultProfiles(); - if (profiles != null && profiles.trim().length() > 0) { - configuration.getResolverConfiguration().setActiveProfiles(profiles); - } - } initDefaultValues(); } } Index: src/org/jboss/tools/maven/project/examples/wizard/ArchetypeExamplesWizardPage.java =================================================================== --- src/org/jboss/tools/maven/project/examples/wizard/ArchetypeExamplesWizardPage.java (revision 39821) +++ src/org/jboss/tools/maven/project/examples/wizard/ArchetypeExamplesWizardPage.java (working copy) @@ -497,6 +497,13 @@ setDescription(ProjectExamplesActivator .getShortDescription(projectExample.getDescription())); } + ProjectImportConfiguration configuration = getImportConfiguration(); + if (configuration != null) { + String profiles = projectExample.getDefaultProfiles(); + if (profiles != null && profiles.trim().length() > 0) { + configuration.getResolverConfiguration().setActiveProfiles(profiles); + } + } projectDescription = projectExample; if (getContainer() != null) { initialize();