[Releng] Fix jdt.user.name processing.
diff --git a/features/org.eclipse.oomph.util-feature/feature.xml b/features/org.eclipse.oomph.util-feature/feature.xml
index 3de7d88..858a2da 100644
--- a/features/org.eclipse.oomph.util-feature/feature.xml
+++ b/features/org.eclipse.oomph.util-feature/feature.xml
@@ -12,7 +12,7 @@
 <feature
       id="org.eclipse.oomph.util"
       label="%featureName"
-      version="1.15.0.qualifier"
+      version="1.16.0.qualifier"
       provider-name="%providerName"
       license-feature="org.eclipse.oomph.license"
       license-feature-version="0.0.0">
diff --git a/features/org.eclipse.oomph.util-feature/pom.xml b/features/org.eclipse.oomph.util-feature/pom.xml
index 587f75f..4d25bb8 100644
--- a/features/org.eclipse.oomph.util-feature/pom.xml
+++ b/features/org.eclipse.oomph.util-feature/pom.xml
@@ -20,6 +20,6 @@
   </parent>
   <groupId>org.eclipse.oomph.features</groupId>
   <artifactId>org.eclipse.oomph.util</artifactId>
-  <version>1.15.0-SNAPSHOT</version>
+  <version>1.16.0-SNAPSHOT</version>
   <packaging>eclipse-feature</packaging>
 </project>
diff --git a/plugins/org.eclipse.oomph.setup.installer/META-INF/MANIFEST.MF b/plugins/org.eclipse.oomph.setup.installer/META-INF/MANIFEST.MF
index d64b32c..110af4e 100644
--- a/plugins/org.eclipse.oomph.setup.installer/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.oomph.setup.installer/META-INF/MANIFEST.MF
@@ -23,7 +23,7 @@
  org.eclipse.equinox.p2.console;bundle-version="[1.0.0,2.0.0)",
  org.eclipse.equinox.p2.engine;bundle-version="[2.2.0,3.0.0)",
  org.eclipse.urischeme;bundle-version="[1.0.0,2.0.0)",
- org.eclipse.oomph.ui;bundle-version="[1.13.0,2.0.0)",
+ org.eclipse.oomph.ui;bundle-version="[1.14.0,2.0.0)",
  org.eclipse.oomph.p2.ui;bundle-version="[1.13.0,2.0.0)",
  org.eclipse.oomph.setup.p2;bundle-version="[1.15.0,2.0.0)",
  org.eclipse.oomph.setup.core;bundle-version="[1.17.0,2.0.0)",
diff --git a/plugins/org.eclipse.oomph.setup.ui.questionnaire/META-INF/MANIFEST.MF b/plugins/org.eclipse.oomph.setup.ui.questionnaire/META-INF/MANIFEST.MF
index 0aeac83..b028452 100644
--- a/plugins/org.eclipse.oomph.setup.ui.questionnaire/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.oomph.setup.ui.questionnaire/META-INF/MANIFEST.MF
@@ -13,6 +13,6 @@
  org.eclipse.emf.ecore.xmi;bundle-version="[2.10.0,3.0.0)",
  org.eclipse.oomph.preferences;bundle-version="[1.11.0,2.0.0)",
  org.eclipse.oomph.setup.ui;bundle-version="[1.17.0,2.0.0)",
- org.eclipse.oomph.ui;bundle-version="[1.13.0,2.0.0)"
+ org.eclipse.oomph.ui;bundle-version="[1.14.0,2.0.0)"
 Bundle-ActivationPolicy: lazy
 Automatic-Module-Name: org.eclipse.oomph.setup.ui.questionnaire
diff --git a/plugins/org.eclipse.oomph.setup.ui/META-INF/MANIFEST.MF b/plugins/org.eclipse.oomph.setup.ui/META-INF/MANIFEST.MF
index b5b6223..f169d9a 100644
--- a/plugins/org.eclipse.oomph.setup.ui/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.oomph.setup.ui/META-INF/MANIFEST.MF
@@ -30,7 +30,7 @@
  org.eclipse.oomph.setup.edit;bundle-version="[1.14.0,2.0.0)";visibility:=reexport,
  org.eclipse.oomph.setup.p2.edit;bundle-version="[1.12.0,2.0.0)",
  org.eclipse.oomph.setup.sync;bundle-version="[1.12.0,2.0.0)",
- org.eclipse.oomph.ui;bundle-version="[1.13.0,2.0.0)",
+ org.eclipse.oomph.ui;bundle-version="[1.14.0,2.0.0)",
  org.eclipse.oomph.p2.edit;bundle-version="[1.13.0,2.0.0)";visibility:=reexport,
  org.eclipse.oomph.p2.core;bundle-version="[1.16.0,2.0.0)",
  org.eclipse.oomph.p2.ui;bundle-version="[1.13.0,2.0.0)",
diff --git a/plugins/org.eclipse.oomph.setup.ui/src/org/eclipse/oomph/setup/ui/SetupUIPlugin.java b/plugins/org.eclipse.oomph.setup.ui/src/org/eclipse/oomph/setup/ui/SetupUIPlugin.java
index 74ee30e..073ff23 100644
--- a/plugins/org.eclipse.oomph.setup.ui/src/org/eclipse/oomph/setup/ui/SetupUIPlugin.java
+++ b/plugins/org.eclipse.oomph.setup.ui/src/org/eclipse/oomph/setup/ui/SetupUIPlugin.java
@@ -305,7 +305,7 @@
       Object codeTemplateContextRegistry = ReflectUtil.invokeMethod("getCodeTemplateContextRegistry", javaUIPlugin);
 
       for (@SuppressWarnings("all")
-      Iterator<TemplateContextType> it = ReflectUtil.invokeMethod("contentTypes", codeTemplateContextRegistry); it.hasNext();)
+      Iterator<TemplateContextType> it = ReflectUtil.invokeMethod("contextTypes", codeTemplateContextRegistry); it.hasNext();)
       {
         TemplateContextType templateContextType = it.next();
         for (@SuppressWarnings("all")
diff --git a/plugins/org.eclipse.oomph.targlets.ui/META-INF/MANIFEST.MF b/plugins/org.eclipse.oomph.targlets.ui/META-INF/MANIFEST.MF
index f8c81e9..63b15fc 100644
--- a/plugins/org.eclipse.oomph.targlets.ui/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.oomph.targlets.ui/META-INF/MANIFEST.MF
@@ -32,7 +32,7 @@
  org.eclipse.oomph.targlets.edit;bundle-version="[1.11.0,2.0.0)";visibility:=reexport,
  org.eclipse.oomph.targlets.editor;bundle-version="[1.10.0,2.0.0)";visibility:=reexport,
  org.eclipse.oomph.p2.ui;bundle-version="[1.13.0,2.0.0)",
- org.eclipse.oomph.ui;bundle-version="[1.13.0,2.0.0)",
+ org.eclipse.oomph.ui;bundle-version="[1.14.0,2.0.0)",
  org.eclipse.oomph.util.pde;bundle-version="[1.10.0,2.0.0)",
  org.eclipse.ui;bundle-version="[3.5.0,4.0.0)",
  org.eclipse.ui.ide;bundle-version="[3.5.0,4.0.0)",
diff --git a/plugins/org.eclipse.oomph.ui/META-INF/MANIFEST.MF b/plugins/org.eclipse.oomph.ui/META-INF/MANIFEST.MF
index c267ea0..14bb00d 100644
--- a/plugins/org.eclipse.oomph.ui/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.oomph.ui/META-INF/MANIFEST.MF
@@ -1,7 +1,7 @@
 Manifest-Version: 1.0
 Bundle-ManifestVersion: 2
 Bundle-SymbolicName: org.eclipse.oomph.ui;singleton:=true
-Bundle-Version: 1.13.0.qualifier
+Bundle-Version: 1.14.0.qualifier
 Bundle-Name: %pluginName
 Bundle-Vendor: %providerName
 Bundle-Localization: plugin
@@ -19,7 +19,7 @@
  org.eclipse.emf.edit.ui;bundle-version="[2.10.0,3.0.0)";visibility:=reexport,
  org.eclipse.emf.ecore.xmi;bundle-version="[2.10.0,3.0.0)",
  org.eclipse.ui.workbench.texteditor;bundle-version="[3.5.0,4.0.0)";resolution:=optional
-Export-Package: org.eclipse.oomph.internal.ui;version="1.13.0";x-internal:=true,
- org.eclipse.oomph.ui;version="1.13.0";x-internal:=true
+Export-Package: org.eclipse.oomph.internal.ui;version="1.14.0";x-internal:=true,
+ org.eclipse.oomph.ui;version="1.14.0";x-internal:=true
 Eclipse-BuddyPolicy: dependent
 Automatic-Module-Name: org.eclipse.oomph.ui
diff --git a/plugins/org.eclipse.oomph.ui/pom.xml b/plugins/org.eclipse.oomph.ui/pom.xml
index 8b9764e..0e2e438 100644
--- a/plugins/org.eclipse.oomph.ui/pom.xml
+++ b/plugins/org.eclipse.oomph.ui/pom.xml
@@ -20,7 +20,7 @@
   </parent>
   <groupId>org.eclipse.oomph</groupId>
   <artifactId>org.eclipse.oomph.ui</artifactId>
-  <version>1.13.0-SNAPSHOT</version>
+  <version>1.14.0-SNAPSHOT</version>
   <packaging>eclipse-plugin</packaging>
 
   <build>