updated version info
diff --git a/metamodel/jwt-converter/META-INF/MANIFEST.MF b/metamodel/jwt-converter/META-INF/MANIFEST.MF
index a457d5d..95046a5 100644
--- a/metamodel/jwt-converter/META-INF/MANIFEST.MF
+++ b/metamodel/jwt-converter/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: JWT Converter
 Bundle-SymbolicName: org.eclipse.jwt.converter;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-Activator: org.eclipse.jwt.converter.internal.Activator
 Bundle-Vendor: Eclipse JWT
 Require-Bundle: org.eclipse.core.runtime;bundle-version="3.5.0",
diff --git a/metamodel/jwt-converter/pom.xml b/metamodel/jwt-converter/pom.xml
index 26f3cc3..987b0a4 100644
--- a/metamodel/jwt-converter/pom.xml
+++ b/metamodel/jwt-converter/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.converter</artifactId>
diff --git a/metamodel/jwt-converter/src/org/eclipse/jwt/converter/internal/ConverterManager.java b/metamodel/jwt-converter/src/org/eclipse/jwt/converter/internal/ConverterManager.java
index 4cae2da..d4034d2 100644
--- a/metamodel/jwt-converter/src/org/eclipse/jwt/converter/internal/ConverterManager.java
+++ b/metamodel/jwt-converter/src/org/eclipse/jwt/converter/internal/ConverterManager.java
@@ -30,8 +30,7 @@
 /**
  * This file starts the update mechanism.
  */
-public class ConverterManager
-{
+public class ConverterManager {
 
 	private static ConverterManager instance = null;
 
@@ -51,6 +50,7 @@
 	public static final int VER_1_3_0 = 130;
 	public static final int VER_1_4_0 = 140;
 	public static final int VER_1_5_0 = 150;
+	public static final int VER_1_6_0 = 160;
 
 	// the string representations of the file versions
 	private static String VER_STR_0_0_0 = "0.0.0";
@@ -68,29 +68,26 @@
 	private static String VER_STR_1_3_0 = "1.3.0";
 	private static String VER_STR_1_4_0 = "1.4.0";
 	private static String VER_STR_1_5_0 = "1.5.0";
-
+	private static String VER_STR_1_6_0 = "1.6.0";
 
 	/**
 	 * Singleton constructor
 	 * 
 	 * @return the instance of the ATLTransformation
 	 */
-	static public ConverterManager getInstance()
-	{
+	static public ConverterManager getInstance() {
 		if (instance == null)
 			instance = new ConverterManager();
 		return instance;
 	}
 
-
 	/**
 	 * Converts the string version to an integer representation.
 	 * 
 	 * @param version
 	 * @return
 	 */
-	private int stringToIntVersion(String version)
-	{
+	private int stringToIntVersion(String version) {
 		if (version.equals(VER_STR_0_0_0))
 			return VER_0_0_0;
 		else if (version.equals(VER_STR_0_0_1))
@@ -121,11 +118,12 @@
 			return VER_1_4_0;
 		else if (version.equals(VER_STR_1_5_0))
 			return VER_1_5_0;
+		else if (version.equals(VER_STR_1_6_0))
+			return VER_1_6_0;
 		else
 			return 0;
 	}
 
-
 	/**
 	 * Calls the main method (but works with strings rather than integers).
 	 * 
@@ -133,19 +131,15 @@
 	 * @param modelFile2
 	 * @param inVersion
 	 * @param outVersion
-	 * @throws Exception 
+	 * @throws Exception
 	 */
-	public void convert(URI inFileURI, URI outFileURI, String inVersion,
-			String outVersion) throws Exception
-	{
-		convert(inFileURI, outFileURI, stringToIntVersion(inVersion),
-				stringToIntVersion(outVersion));
+	public void convert(URI inFileURI, URI outFileURI, String inVersion, String outVersion) throws Exception {
+		convert(inFileURI, outFileURI, stringToIntVersion(inVersion), stringToIntVersion(outVersion));
 	}
 
 	private String toPath(URI fileURI) throws IOException {
 		String filePath = fileURI.toFileString();
-		if (filePath == null || !(new File(filePath)).exists())
-		{
+		if (filePath == null || !(new File(filePath)).exists()) {
 			URL url = new URL(fileURI.toString());
 			filePath = FileLocator.resolve(url).toString().replace("file:", "");
 		}
@@ -153,147 +147,134 @@
 	}
 
 	/**
-	 * inVersion = 10 means: 0.0.0 (1.0.0) inVersion = 20 means: 0.0.1 (1.0.1)
-	 * inVersion = 30 means: 0.1.0 (1.1.0) inVersion = 40 means: 0.2.0 (1.2.0)
-	 * inVersion = 50 means: 0.3.0 (1.3.0) inVersion = 60 means: 0.4.0 (1.4.0)
-	 * inVersion = 70 means: 0.5.0 (1.5.0) inVersion = 80 means: 0.6.0 (1.6.0)
-	 * outVersion analogous
+	 * inVersion = 10 means: 0.0.0 (1.0.0) inVersion = 20 means: 0.0.1 (1.0.1) inVersion = 30 means: 0.1.0 (1.1.0) inVersion = 40 means:
+	 * 0.2.0 (1.2.0) inVersion = 50 means: 0.3.0 (1.3.0) inVersion = 60 means: 0.4.0 (1.4.0) inVersion = 70 means: 0.5.0 (1.5.0) inVersion =
+	 * 80 means: 0.6.0 (1.6.0) outVersion analogous
 	 * 
 	 * @param inFilePath
 	 * @param outFilePath
 	 * @param inVersion
 	 * @param outVersion
-	 * @throws Exception 
+	 * @throws Exception
 	 */
-	public void convert(URI inFileURI, URI outFileURI, int inVersion,
-			int outVersion) throws Exception
-	{
+	public void convert(URI inFileURI, URI outFileURI, int inVersion, int outVersion) throws Exception {
 		ATLTransformation atl = ATLTransformation.getInstance();
 		String inFilePath = toPath(inFileURI);
 		String outFilePath = toPath(outFileURI);
-		
+
 		// the following switch case makes all necessary transformations from
 		// the inversion to the out-version
 		// if inversion == 20 and outversion == 40 then
 		// it will start in case 20, but don't find a break, go to case 30
 		// don't find a break again, go to case 40, find a break and stop.
-		switch (inVersion)
-		{
-			case VER_0_0_0:
-			{
-				atl.setSourceVersion(VER_0_0_0);
-				atl.setTargetVersion(VER_0_0_1, VER_STR_0_0_1);
-				atl.jwt2jwt(inFilePath, outFilePath);
-				if (outVersion == VER_0_0_1)
-					break;
-			}
-			case VER_0_0_1:
-			{
-				atl.setSourceVersion(VER_0_0_1);
-				atl.setTargetVersion(VER_0_1_0, VER_STR_0_1_0);
-				atl.jwt2jwt(inFilePath, outFilePath);
-				if (outVersion == VER_0_1_0)
-					break;
-			}
-			case VER_0_1_0:
-			{
-				atl.setSourceVersion(VER_0_1_0);
-				atl.setTargetVersion(VER_0_2_0, VER_STR_0_2_0);
-				atl.jwt2jwt(inFilePath, outFilePath);
-				if (outVersion == VER_0_2_0)
-					break;
-			}
-			case VER_0_2_0:
-			{
-				atl.setSourceVersion(VER_0_2_0);
-				atl.setTargetVersion(VER_0_3_0, VER_STR_0_3_0);
-				atl.jwt2jwt(inFilePath, outFilePath);
-				if (outVersion == VER_0_3_0)
-					break;
-			}
-			case VER_0_3_0:
-			{
-				atl.setSourceVersion(VER_0_3_0);
-				atl.setTargetVersion(VER_0_4_0, VER_STR_0_4_0);
-				atl.jwt2jwt(inFilePath, outFilePath);
-				if (outVersion == VER_0_4_0)
-					break;
-			}
-			case VER_0_4_0:
-			{
-				atl.setSourceVersion(VER_0_4_0);
-				atl.setTargetVersion(VER_0_5_0, VER_STR_0_5_0);
-				atl.jwt2jwt(inFilePath, outFilePath);
-				if (outVersion == VER_0_5_0)
-					break;
-			}
-			case VER_0_5_0:
-			{
-				atl.setSourceVersion(VER_0_5_0);
-				atl.setTargetVersion(VER_0_6_0, VER_STR_0_6_0);
-				atl.jwt2jwt(inFilePath, outFilePath);
-				if (outVersion == VER_0_6_0)
-					break;
-			}
-			case VER_0_6_0:
-			{
-				atl.setSourceVersion(VER_0_6_0);
-				atl.setTargetVersion(VER_0_7_0, VER_STR_0_7_0);
-				atl.jwt2jwt(inFilePath, outFilePath);
-				if (outVersion == VER_0_7_0)
-					break;
-			}
-			case VER_0_7_0:
-			{
-				atl.setSourceVersion(VER_0_7_0);
-				atl.setTargetVersion(VER_1_0_0, VER_STR_1_0_0);
-				atl.justUpdateFileTag(inFilePath, outFilePath);
-				if (outVersion == VER_1_0_0)
-					break;
-			}
-			case VER_1_0_0:
-			{
-				atl.setSourceVersion(VER_1_0_0);
-				atl.setTargetVersion(VER_1_1_0, VER_STR_1_1_0);
-				atl.justUpdateFileTag(inFilePath, outFilePath);
-				if (outVersion == VER_1_1_0)
-					break;
-			}
-			case VER_1_1_0:
-			{
-				atl.setSourceVersion(VER_1_1_0);
-				atl.setTargetVersion(VER_1_2_0, VER_STR_1_2_0);
-				atl.justUpdateFileTag(inFilePath, outFilePath);
-				if (outVersion == VER_1_2_0)
-					break;
-			}
-			case VER_1_2_0:
-			{
-				atl.setSourceVersion(VER_1_2_0);
-				atl.setTargetVersion(VER_1_3_0, VER_STR_1_3_0);
-				atl.justUpdateFileTag(inFilePath, outFilePath);
-				if (outVersion == VER_1_3_0)
-					break;
-			}
-			case VER_1_3_0:
-			{
-				atl.setSourceVersion(VER_1_3_0);
-				atl.setTargetVersion(VER_1_4_0, VER_STR_1_4_0);
-				atl.justUpdateFileTag(inFilePath, outFilePath);
-				if (outVersion == VER_1_4_0)
-					break;
-			}
-			case VER_1_4_0:
-			{
-				atl.setSourceVersion(VER_1_4_0);
-				atl.setTargetVersion(VER_1_5_0, VER_STR_1_5_0);
-				atl.justUpdateFileTag(inFilePath, outFilePath);
-				if (outVersion == VER_1_5_0)
-					break;
-			}
-			default:
-				throw new UnsupportedVersionException("Either " + inVersion + " or "
-						+ outVersion + " are not known.");
+		switch (inVersion) {
+		case VER_0_0_0: {
+			atl.setSourceVersion(VER_0_0_0);
+			atl.setTargetVersion(VER_0_0_1, VER_STR_0_0_1);
+			atl.jwt2jwt(inFilePath, outFilePath);
+			if (outVersion == VER_0_0_1)
+				break;
+		}
+		case VER_0_0_1: {
+			atl.setSourceVersion(VER_0_0_1);
+			atl.setTargetVersion(VER_0_1_0, VER_STR_0_1_0);
+			atl.jwt2jwt(inFilePath, outFilePath);
+			if (outVersion == VER_0_1_0)
+				break;
+		}
+		case VER_0_1_0: {
+			atl.setSourceVersion(VER_0_1_0);
+			atl.setTargetVersion(VER_0_2_0, VER_STR_0_2_0);
+			atl.jwt2jwt(inFilePath, outFilePath);
+			if (outVersion == VER_0_2_0)
+				break;
+		}
+		case VER_0_2_0: {
+			atl.setSourceVersion(VER_0_2_0);
+			atl.setTargetVersion(VER_0_3_0, VER_STR_0_3_0);
+			atl.jwt2jwt(inFilePath, outFilePath);
+			if (outVersion == VER_0_3_0)
+				break;
+		}
+		case VER_0_3_0: {
+			atl.setSourceVersion(VER_0_3_0);
+			atl.setTargetVersion(VER_0_4_0, VER_STR_0_4_0);
+			atl.jwt2jwt(inFilePath, outFilePath);
+			if (outVersion == VER_0_4_0)
+				break;
+		}
+		case VER_0_4_0: {
+			atl.setSourceVersion(VER_0_4_0);
+			atl.setTargetVersion(VER_0_5_0, VER_STR_0_5_0);
+			atl.jwt2jwt(inFilePath, outFilePath);
+			if (outVersion == VER_0_5_0)
+				break;
+		}
+		case VER_0_5_0: {
+			atl.setSourceVersion(VER_0_5_0);
+			atl.setTargetVersion(VER_0_6_0, VER_STR_0_6_0);
+			atl.jwt2jwt(inFilePath, outFilePath);
+			if (outVersion == VER_0_6_0)
+				break;
+		}
+		case VER_0_6_0: {
+			atl.setSourceVersion(VER_0_6_0);
+			atl.setTargetVersion(VER_0_7_0, VER_STR_0_7_0);
+			atl.jwt2jwt(inFilePath, outFilePath);
+			if (outVersion == VER_0_7_0)
+				break;
+		}
+		case VER_0_7_0: {
+			atl.setSourceVersion(VER_0_7_0);
+			atl.setTargetVersion(VER_1_0_0, VER_STR_1_0_0);
+			atl.justUpdateFileTag(inFilePath, outFilePath);
+			if (outVersion == VER_1_0_0)
+				break;
+		}
+		case VER_1_0_0: {
+			atl.setSourceVersion(VER_1_0_0);
+			atl.setTargetVersion(VER_1_1_0, VER_STR_1_1_0);
+			atl.justUpdateFileTag(inFilePath, outFilePath);
+			if (outVersion == VER_1_1_0)
+				break;
+		}
+		case VER_1_1_0: {
+			atl.setSourceVersion(VER_1_1_0);
+			atl.setTargetVersion(VER_1_2_0, VER_STR_1_2_0);
+			atl.justUpdateFileTag(inFilePath, outFilePath);
+			if (outVersion == VER_1_2_0)
+				break;
+		}
+		case VER_1_2_0: {
+			atl.setSourceVersion(VER_1_2_0);
+			atl.setTargetVersion(VER_1_3_0, VER_STR_1_3_0);
+			atl.justUpdateFileTag(inFilePath, outFilePath);
+			if (outVersion == VER_1_3_0)
+				break;
+		}
+		case VER_1_3_0: {
+			atl.setSourceVersion(VER_1_3_0);
+			atl.setTargetVersion(VER_1_4_0, VER_STR_1_4_0);
+			atl.justUpdateFileTag(inFilePath, outFilePath);
+			if (outVersion == VER_1_4_0)
+				break;
+		}
+		case VER_1_4_0: {
+			atl.setSourceVersion(VER_1_4_0);
+			atl.setTargetVersion(VER_1_5_0, VER_STR_1_5_0);
+			atl.justUpdateFileTag(inFilePath, outFilePath);
+			if (outVersion == VER_1_5_0)
+				break;
+		}
+		case VER_1_5_0: {
+			atl.setSourceVersion(VER_1_5_0);
+			atl.setTargetVersion(VER_1_6_0, VER_STR_1_6_0);
+			atl.justUpdateFileTag(inFilePath, outFilePath);
+			if (outVersion == VER_1_6_0)
+				break;
+		}
+		default:
+			throw new UnsupportedVersionException("Either " + inVersion + " or " + outVersion + " are not known.");
 		}
 
 	}
diff --git a/metamodel/jwt-metamodel/META-INF/MANIFEST.MF b/metamodel/jwt-metamodel/META-INF/MANIFEST.MF
index c214c05..14e8aa9 100644
--- a/metamodel/jwt-metamodel/META-INF/MANIFEST.MF
+++ b/metamodel/jwt-metamodel/META-INF/MANIFEST.MF
@@ -2,13 +2,13 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: JWT Metamodel
 Bundle-SymbolicName: org.eclipse.jwt.meta;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-Activator: org.eclipse.jwt.meta.Plugin
 Bundle-Vendor: Eclipse JWT
 Require-Bundle: org.eclipse.core.runtime;bundle-version="3.5.0",
  org.eclipse.emf.edit;bundle-version="2.4.1",
  org.eclipse.emf.common.ui;bundle-version="2.4.0",
- org.eclipse.jwt.we.conf.edit;bundle-version="1.5.0"
+ org.eclipse.jwt.we.conf.edit;bundle-version="1.6.0"
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
 Bundle-ActivationPolicy: lazy
 Export-Package: org.eclipse.jwt.meta,
diff --git a/metamodel/jwt-metamodel/pom.xml b/metamodel/jwt-metamodel/pom.xml
index 5e1ff2d..6797fb3 100644
--- a/metamodel/jwt-metamodel/pom.xml
+++ b/metamodel/jwt-metamodel/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.meta</artifactId>
diff --git a/releng/jwt-feature-branding/META-INF/MANIFEST.MF b/releng/jwt-feature-branding/META-INF/MANIFEST.MF
index f194f3e..cbf5802 100644
--- a/releng/jwt-feature-branding/META-INF/MANIFEST.MF
+++ b/releng/jwt-feature-branding/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: JWT Branding plugin
 Bundle-SymbolicName: org.eclipse.jwt.branding;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-Vendor: Eclipse JWT
 Bundle-Localization: plugin
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
diff --git a/releng/jwt-feature-branding/pom.xml b/releng/jwt-feature-branding/pom.xml
index 4f1bc5c..0a28122 100644
--- a/releng/jwt-feature-branding/pom.xml
+++ b/releng/jwt-feature-branding/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.branding</artifactId>
diff --git a/releng/jwt-tests-plugin-unofficial/src/org/eclipse/jwt/tests/converter/samples/v1_2_0/ExternalApplications.workflow b/releng/jwt-tests-plugin-unofficial/src/org/eclipse/jwt/tests/converter/samples/v1_2_0/ExternalApplications.workflow
index b414f86..d321cf7 100644
--- a/releng/jwt-tests-plugin-unofficial/src/org/eclipse/jwt/tests/converter/samples/v1_2_0/ExternalApplications.workflow
+++ b/releng/jwt-tests-plugin-unofficial/src/org/eclipse/jwt/tests/converter/samples/v1_2_0/ExternalApplications.workflow
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<core:Model xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:application="org.eclipse.jwt/application" xmlns:core="org.eclipse.jwt/core" xmlns:data="org.eclipse.jwt/data" xmlns:organisations="org.eclipse.jwt/organisations" xmlns:processes="org.eclipse.jwt/processes" name="ExternalApplicationTest" author="F. Lautenbacher, University of Augsburg" version="1.5.0" description="This simple process shows the usage of adapters in the simulator. &#xD;&#xA;This example requires that you have several files predefined in order for the AgilPro Simulator to simulate the process: there needs to be a folder /Testdocuments in your workspace and there you should put the files Test.doc, Test.xls and Test.pdf.&#xD;&#xA;The Simulator can only simulate the process if additional software is installed: either OpenOffice or MS Office for the .doc and .xls files and Adobe Acrobat Reader for the .pdf file." fileversion="1.2.0">
+<core:Model xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:application="org.eclipse.jwt/application" xmlns:core="org.eclipse.jwt/core" xmlns:data="org.eclipse.jwt/data" xmlns:organisations="org.eclipse.jwt/organisations" xmlns:processes="org.eclipse.jwt/processes" name="ExternalApplicationTest" author="F. Lautenbacher, University of Augsburg" version="1.6.0" description="This simple process shows the usage of adapters in the simulator. &#xD;&#xA;This example requires that you have several files predefined in order for the AgilPro Simulator to simulate the process: there needs to be a folder /Testdocuments in your workspace and there you should put the files Test.doc, Test.xls and Test.pdf.&#xD;&#xA;The Simulator can only simulate the process if additional software is installed: either OpenOffice or MS Office for the .doc and .xls files and Adobe Acrobat Reader for the .pdf file." fileversion="1.2.0">
   <subpackages name="External applications">
     <elements xsi:type="application:Application" name="Microsoft Word" icon="notebook.png" javaClass="eu.emundo.agilpro.fw.fe.intf.WordUi"/>
     <elements xsi:type="application:Application" name="Microsoft Excel" icon="chart.png" javaClass="eu.emundo.agilpro.fw.fe.intf.ExcelUi"/>
diff --git a/releng/jwt-tests-plugin-unofficial/src/org/eclipse/jwt/tests/transformation/jpdl/ExternalApplications.workflow b/releng/jwt-tests-plugin-unofficial/src/org/eclipse/jwt/tests/transformation/jpdl/ExternalApplications.workflow
index 0c2d3bf..27e26e2 100644
--- a/releng/jwt-tests-plugin-unofficial/src/org/eclipse/jwt/tests/transformation/jpdl/ExternalApplications.workflow
+++ b/releng/jwt-tests-plugin-unofficial/src/org/eclipse/jwt/tests/transformation/jpdl/ExternalApplications.workflow
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
-<core:Model xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:application="org.eclipse.jwt/application" xmlns:core="org.eclipse.jwt/core" xmlns:data="org.eclipse.jwt/data" xmlns:organisations="org.eclipse.jwt/organisations" xmlns:processes="org.eclipse.jwt/processes" name="ExternalApplicationTest" author="F. Lautenbacher, University of Augsburg" version="1.5.0" description="This simple process shows the usage of adapters in the simulator. &#xD;&#xA;This example requires that you have several files predefined in order for the AgilPro Simulator to simulate the process: there needs to be a folder /Testdocuments in your workspace and there you should put the files Test.doc, Test.xls and Test.pdf.&#xD;&#xA;The Simulator can only simulate the process if additional software is installed: either OpenOffice or MS Office for the .doc and .xls files and Adobe Acrobat Reader for the .pdf file." fileversion="1.2.0">
+<core:Model xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:application="org.eclipse.jwt/application" xmlns:core="org.eclipse.jwt/core" xmlns:data="org.eclipse.jwt/data" xmlns:organisations="org.eclipse.jwt/organisations" xmlns:processes="org.eclipse.jwt/processes" name="ExternalApplicationTest" author="F. Lautenbacher, University of Augsburg" version="1.6.0" description="This simple process shows the usage of adapters in the simulator. &#xD;&#xA;This example requires that you have several files predefined in order for the AgilPro Simulator to simulate the process: there needs to be a folder /Testdocuments in your workspace and there you should put the files Test.doc, Test.xls and Test.pdf.&#xD;&#xA;The Simulator can only simulate the process if additional software is installed: either OpenOffice or MS Office for the .doc and .xls files and Adobe Acrobat Reader for the .pdf file." fileversion="1.2.0">
   <subpackages name="External applications">
     <elements xsi:type="application:Application" name="Microsoft Word" icon="notebook.png" javaClass="eu.emundo.agilpro.fw.fe.intf.WordUi"/>
     <elements xsi:type="application:Application" name="Microsoft Excel" icon="chart.png" javaClass="eu.emundo.agilpro.fw.fe.intf.ExcelUi"/>
diff --git a/releng/jwt-tests-plugin/META-INF/MANIFEST.MF b/releng/jwt-tests-plugin/META-INF/MANIFEST.MF
index a312f39..a39f80c 100644
--- a/releng/jwt-tests-plugin/META-INF/MANIFEST.MF
+++ b/releng/jwt-tests-plugin/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: JWT WE Tests
 Bundle-SymbolicName: org.eclipse.jwt.tests;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Require-Bundle: org.eclipse.core.runtime;bundle-version="3.5.0",
  org.eclipse.core.resources;bundle-version="3.5.0",
  org.eclipse.ui.ide,
@@ -12,14 +12,14 @@
  org.eclipse.emf.edit;bundle-version="2.4.1",
  org.eclipse.gef;bundle-version="3.4.0",
  org.junit,
- org.eclipse.jwt.converter;bundle-version="1.5.0",
- org.eclipse.jwt.transformations.baseTransformation;bundle-version="1.5.0",
- org.eclipse.jwt.transformations.bpmn;bundle-version="1.5.0",
- org.eclipse.jwt.transformation.stpim;bundle-version="1.5.0",
- org.eclipse.jwt.transformations.xpdl;bundle-version="1.5.0",
- org.eclipse.jwt.we.conf.model.editor;bundle-version="1.5.0",
- org.eclipse.jwt.we;bundle-version="1.5.0",
- org.eclipse.jwt.branding;bundle-version="1.5.0"
+ org.eclipse.jwt.converter;bundle-version="1.6.0",
+ org.eclipse.jwt.transformations.baseTransformation;bundle-version="1.6.0",
+ org.eclipse.jwt.transformations.bpmn;bundle-version="1.6.0",
+ org.eclipse.jwt.transformation.stpim;bundle-version="1.6.0",
+ org.eclipse.jwt.transformations.xpdl;bundle-version="1.6.0",
+ org.eclipse.jwt.we.conf.model.editor;bundle-version="1.6.0",
+ org.eclipse.jwt.we;bundle-version="1.6.0",
+ org.eclipse.jwt.branding;bundle-version="1.6.0"
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
 Bundle-ActivationPolicy: lazy
 Export-Package: org.eclipse.jwt.tests,
diff --git a/releng/jwt-tests-plugin/pom.xml b/releng/jwt-tests-plugin/pom.xml
index 49f81c4..5a53d05 100644
--- a/releng/jwt-tests-plugin/pom.xml
+++ b/releng/jwt-tests-plugin/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.tests</artifactId>
diff --git a/releng/jwt-tests-plugin/src/org/eclipse/jwt/tests/integration/ExternalApplications.workflow b/releng/jwt-tests-plugin/src/org/eclipse/jwt/tests/integration/ExternalApplications.workflow
index 3ebe3b3..9218a55 100644
--- a/releng/jwt-tests-plugin/src/org/eclipse/jwt/tests/integration/ExternalApplications.workflow
+++ b/releng/jwt-tests-plugin/src/org/eclipse/jwt/tests/integration/ExternalApplications.workflow
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<core:Model xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:application="org.eclipse.jwt/application" xmlns:core="org.eclipse.jwt/core" xmlns:data="org.eclipse.jwt/data" xmlns:organisations="org.eclipse.jwt/organisations" xmlns:processes="org.eclipse.jwt/processes" name="ExternalApplicationTest" author="F. Lautenbacher, University of Augsburg" version="1.5.0" description="This simple process shows the usage of adapters in the simulator. &#xD;&#xA;This example requires that you have several files predefined in order for the AgilPro Simulator to simulate the process: there needs to be a folder /Testdocuments in your workspace and there you should put the files Test.doc, Test.xls and Test.pdf.&#xD;&#xA;The Simulator can only simulate the process if additional software is installed: either OpenOffice or MS Office for the .doc and .xls files and Adobe Acrobat Reader for the .pdf file." fileversion="1.5.0">
+<core:Model xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:application="org.eclipse.jwt/application" xmlns:core="org.eclipse.jwt/core" xmlns:data="org.eclipse.jwt/data" xmlns:organisations="org.eclipse.jwt/organisations" xmlns:processes="org.eclipse.jwt/processes" name="ExternalApplicationTest" author="F. Lautenbacher, University of Augsburg" version="1.6.0" description="This simple process shows the usage of adapters in the simulator. &#xD;&#xA;This example requires that you have several files predefined in order for the AgilPro Simulator to simulate the process: there needs to be a folder /Testdocuments in your workspace and there you should put the files Test.doc, Test.xls and Test.pdf.&#xD;&#xA;The Simulator can only simulate the process if additional software is installed: either OpenOffice or MS Office for the .doc and .xls files and Adobe Acrobat Reader for the .pdf file." fileversion="1.6.0">
   <subpackages name="External applications">
     <elements xsi:type="application:Application" name="Microsoft Word" icon="notebook.png" javaClass="eu.emundo.agilpro.fw.fe.intf.WordUi"/>
     <elements xsi:type="application:Application" name="Microsoft Excel" icon="chart.png" javaClass="eu.emundo.agilpro.fw.fe.intf.ExcelUi"/>
diff --git a/releng/jwt-tests-plugin/src/org/eclipse/jwt/tests/transformation/bpmn/ExternalApplications.workflow b/releng/jwt-tests-plugin/src/org/eclipse/jwt/tests/transformation/bpmn/ExternalApplications.workflow
index 0c2d3bf..27e26e2 100644
--- a/releng/jwt-tests-plugin/src/org/eclipse/jwt/tests/transformation/bpmn/ExternalApplications.workflow
+++ b/releng/jwt-tests-plugin/src/org/eclipse/jwt/tests/transformation/bpmn/ExternalApplications.workflow
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
-<core:Model xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:application="org.eclipse.jwt/application" xmlns:core="org.eclipse.jwt/core" xmlns:data="org.eclipse.jwt/data" xmlns:organisations="org.eclipse.jwt/organisations" xmlns:processes="org.eclipse.jwt/processes" name="ExternalApplicationTest" author="F. Lautenbacher, University of Augsburg" version="1.5.0" description="This simple process shows the usage of adapters in the simulator. &#xD;&#xA;This example requires that you have several files predefined in order for the AgilPro Simulator to simulate the process: there needs to be a folder /Testdocuments in your workspace and there you should put the files Test.doc, Test.xls and Test.pdf.&#xD;&#xA;The Simulator can only simulate the process if additional software is installed: either OpenOffice or MS Office for the .doc and .xls files and Adobe Acrobat Reader for the .pdf file." fileversion="1.2.0">
+<core:Model xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:application="org.eclipse.jwt/application" xmlns:core="org.eclipse.jwt/core" xmlns:data="org.eclipse.jwt/data" xmlns:organisations="org.eclipse.jwt/organisations" xmlns:processes="org.eclipse.jwt/processes" name="ExternalApplicationTest" author="F. Lautenbacher, University of Augsburg" version="1.6.0" description="This simple process shows the usage of adapters in the simulator. &#xD;&#xA;This example requires that you have several files predefined in order for the AgilPro Simulator to simulate the process: there needs to be a folder /Testdocuments in your workspace and there you should put the files Test.doc, Test.xls and Test.pdf.&#xD;&#xA;The Simulator can only simulate the process if additional software is installed: either OpenOffice or MS Office for the .doc and .xls files and Adobe Acrobat Reader for the .pdf file." fileversion="1.2.0">
   <subpackages name="External applications">
     <elements xsi:type="application:Application" name="Microsoft Word" icon="notebook.png" javaClass="eu.emundo.agilpro.fw.fe.intf.WordUi"/>
     <elements xsi:type="application:Application" name="Microsoft Excel" icon="chart.png" javaClass="eu.emundo.agilpro.fw.fe.intf.ExcelUi"/>
diff --git a/releng/jwt-tests-plugin/src/org/eclipse/jwt/tests/transformation/stpim/ExternalApplications.workflow b/releng/jwt-tests-plugin/src/org/eclipse/jwt/tests/transformation/stpim/ExternalApplications.workflow
index ec14c89..f724151 100644
--- a/releng/jwt-tests-plugin/src/org/eclipse/jwt/tests/transformation/stpim/ExternalApplications.workflow
+++ b/releng/jwt-tests-plugin/src/org/eclipse/jwt/tests/transformation/stpim/ExternalApplications.workflow
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="ISO-8859-1"?>
-<core:Model xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:application="org.eclipse.jwt/application" xmlns:core="org.eclipse.jwt/core" xmlns:data="org.eclipse.jwt/data" xmlns:organisations="org.eclipse.jwt/organisations" xmlns:processes="org.eclipse.jwt/processes" name="ExternalApplicationTest" author="F. Lautenbacher, University of Augsburg" version="1.5.0" description="This simple process shows the usage of adapters in the simulator. &#xD;&#xA;This example requires that you have several files predefined in order for the AgilPro Simulator to simulate the process: there needs to be a folder /Testdocuments in your workspace and there you should put the files Test.doc, Test.xls and Test.pdf.&#xD;&#xA;The Simulator can only simulate the process if additional software is installed: either OpenOffice or MS Office for the .doc and .xls files and Adobe Acrobat Reader for the .pdf file." fileversion="1.1.0">
+<core:Model xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:application="org.eclipse.jwt/application" xmlns:core="org.eclipse.jwt/core" xmlns:data="org.eclipse.jwt/data" xmlns:organisations="org.eclipse.jwt/organisations" xmlns:processes="org.eclipse.jwt/processes" name="ExternalApplicationTest" author="F. Lautenbacher, University of Augsburg" version="1.6.0" description="This simple process shows the usage of adapters in the simulator. &#xD;&#xA;This example requires that you have several files predefined in order for the AgilPro Simulator to simulate the process: there needs to be a folder /Testdocuments in your workspace and there you should put the files Test.doc, Test.xls and Test.pdf.&#xD;&#xA;The Simulator can only simulate the process if additional software is installed: either OpenOffice or MS Office for the .doc and .xls files and Adobe Acrobat Reader for the .pdf file." fileversion="1.1.0">
   <subpackages name="External applications">
     <elements xsi:type="application:Application" name="Microsoft Word" icon="notebook.png" javaClass="eu.emundo.agilpro.fw.fe.intf.WordUi"/>
     <elements xsi:type="application:Application" name="Microsoft Excel" icon="chart.png" javaClass="eu.emundo.agilpro.fw.fe.intf.ExcelUi"/>
diff --git a/releng/jwt-tests-plugin/src/org/eclipse/jwt/tests/transformation/xpdl/ExternalApplications.workflow b/releng/jwt-tests-plugin/src/org/eclipse/jwt/tests/transformation/xpdl/ExternalApplications.workflow
index b414f86..d321cf7 100644
--- a/releng/jwt-tests-plugin/src/org/eclipse/jwt/tests/transformation/xpdl/ExternalApplications.workflow
+++ b/releng/jwt-tests-plugin/src/org/eclipse/jwt/tests/transformation/xpdl/ExternalApplications.workflow
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<core:Model xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:application="org.eclipse.jwt/application" xmlns:core="org.eclipse.jwt/core" xmlns:data="org.eclipse.jwt/data" xmlns:organisations="org.eclipse.jwt/organisations" xmlns:processes="org.eclipse.jwt/processes" name="ExternalApplicationTest" author="F. Lautenbacher, University of Augsburg" version="1.5.0" description="This simple process shows the usage of adapters in the simulator. &#xD;&#xA;This example requires that you have several files predefined in order for the AgilPro Simulator to simulate the process: there needs to be a folder /Testdocuments in your workspace and there you should put the files Test.doc, Test.xls and Test.pdf.&#xD;&#xA;The Simulator can only simulate the process if additional software is installed: either OpenOffice or MS Office for the .doc and .xls files and Adobe Acrobat Reader for the .pdf file." fileversion="1.2.0">
+<core:Model xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:application="org.eclipse.jwt/application" xmlns:core="org.eclipse.jwt/core" xmlns:data="org.eclipse.jwt/data" xmlns:organisations="org.eclipse.jwt/organisations" xmlns:processes="org.eclipse.jwt/processes" name="ExternalApplicationTest" author="F. Lautenbacher, University of Augsburg" version="1.6.0" description="This simple process shows the usage of adapters in the simulator. &#xD;&#xA;This example requires that you have several files predefined in order for the AgilPro Simulator to simulate the process: there needs to be a folder /Testdocuments in your workspace and there you should put the files Test.doc, Test.xls and Test.pdf.&#xD;&#xA;The Simulator can only simulate the process if additional software is installed: either OpenOffice or MS Office for the .doc and .xls files and Adobe Acrobat Reader for the .pdf file." fileversion="1.2.0">
   <subpackages name="External applications">
     <elements xsi:type="application:Application" name="Microsoft Word" icon="notebook.png" javaClass="eu.emundo.agilpro.fw.fe.intf.WordUi"/>
     <elements xsi:type="application:Application" name="Microsoft Excel" icon="chart.png" javaClass="eu.emundo.agilpro.fw.fe.intf.ExcelUi"/>
diff --git a/releng/jwt-we-example/META-INF/MANIFEST.MF b/releng/jwt-we-example/META-INF/MANIFEST.MF
index 8798c7e..23870c0 100644
--- a/releng/jwt-we-example/META-INF/MANIFEST.MF
+++ b/releng/jwt-we-example/META-INF/MANIFEST.MF
@@ -3,12 +3,12 @@
 Bundle-Name: %pluginName
 Bundle-SymbolicName: org.eclipse.jwt.we.example;singleton:=true
 Bundle-Localization: plugin
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-Activator: org.eclipse.jwt.we.example.Activator
 Bundle-Vendor: Eclipse JWT
 Require-Bundle: org.eclipse.ui;bundle-version="3.5.0",
  org.eclipse.core.runtime;bundle-version="3.5.0",
- org.eclipse.jwt.branding;bundle-version="1.5.0"
+ org.eclipse.jwt.branding;bundle-version="1.6.0"
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
 Bundle-ActivationPolicy: lazy
 Export-Package: org.eclipse.jwt.we.example
diff --git a/releng/jwt-we-example/pom.xml b/releng/jwt-we-example/pom.xml
index 3c1db4b..53e89d8 100644
--- a/releng/jwt-we-example/pom.xml
+++ b/releng/jwt-we-example/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.we.example</artifactId>
diff --git a/releng/mvn-jwt-builder/pom.xml b/releng/mvn-jwt-builder/pom.xml
index 69ea8af..43dfb1c 100644
--- a/releng/mvn-jwt-builder/pom.xml
+++ b/releng/mvn-jwt-builder/pom.xml
@@ -5,7 +5,7 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.eclipse.jwt</groupId>
   <artifactId>parent</artifactId>
-  <version>1.5.0.qualifier</version>
+  <version>1.6.0.qualifier</version>
   <packaging>pom</packaging>
   
  <!-- jwt modules -->
@@ -49,7 +49,7 @@
  <!-- eclipse build platform -->
   <repositories>
     <repository>
-      <id>eclipse-mars</id>
+      <id>eclipse-neon</id>
       <layout>p2</layout>
       <url>http://download.eclipse.org/releases/mars/</url>
     </repository>
@@ -91,11 +91,15 @@
         <artifactId>tycho-surefire-plugin</artifactId>
         <version>${tycho-version}</version>
         <configuration>
+         
           <useUIHarness>true</useUIHarness>
+         
           <testFailureIgnore>true</testFailureIgnore>
+        
           <includes>
             <include>**/AllTests.java</include>
           </includes>
+		 
 		  <dependencies>
             <dependency>
               <type>eclipse-feature</type>
@@ -108,6 +112,7 @@
               <version>0.0.0</version>
             </dependency>
           </dependencies>
+          
         </configuration>
       </plugin>
 
@@ -120,9 +125,12 @@
 
 	<!-- sign jars on eclipse server -->
     <profile>
+    
       <id>eclipse-sign</id>
+      
       <build>
         <plugins>
+        
           <plugin>
             <groupId>org.eclipse.tycho</groupId>
             <artifactId>target-platform-configuration</artifactId>
@@ -194,6 +202,7 @@
               <defaultP2Metadata>false</defaultP2Metadata>
             </configuration>
           </plugin>
+          
         </plugins>
       </build>
     </profile>
diff --git a/releng/org.eclipse.jwt.feature/feature.xml b/releng/org.eclipse.jwt.feature/feature.xml
index 009f96d..ead833a 100644
--- a/releng/org.eclipse.jwt.feature/feature.xml
+++ b/releng/org.eclipse.jwt.feature/feature.xml
@@ -2,7 +2,7 @@
 <feature
       id="org.eclipse.jwt.feature"
       label="Java Workflow Tooling"
-      version="1.5.0.qualifier"
+      version="1.6.0.qualifier"
       provider-name="Eclipse JWT"
       plugin="org.eclipse.jwt.branding">
 
@@ -69,168 +69,168 @@
          id="org.eclipse.jwt.branding"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.we.example"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.meta"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.we.conf.model"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.we.conf.edit"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.we.conf.model.editor"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.we.conf.property.model"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.we.conf.property.edit"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.we"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.we.plugins.doc"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.we.plugins.viewuml"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.we.plugins.viewepc"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.we_view_editor"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.we.conf.we"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.transformations.baseTransformation"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.transformations.xslt.tools"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.transformations.xpdl"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.transformations.bpmn"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.transformation.stpim"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.we.helpers.application"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.we.helpers.files"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.transformations.properties"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.converter"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
    <plugin
          id="org.eclipse.jwt.we.plugins.viewbpmn"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
 </feature>
diff --git a/releng/org.eclipse.jwt.feature/pom.xml b/releng/org.eclipse.jwt.feature/pom.xml
index a30f6d1..20cd49d 100644
--- a/releng/org.eclipse.jwt.feature/pom.xml
+++ b/releng/org.eclipse.jwt.feature/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.feature</artifactId>
diff --git a/releng/org.eclipse.jwt.p2updatesite/category.xml b/releng/org.eclipse.jwt.p2updatesite/category.xml
index 44f7f80..4252b93 100644
--- a/releng/org.eclipse.jwt.p2updatesite/category.xml
+++ b/releng/org.eclipse.jwt.p2updatesite/category.xml
@@ -1,4 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <site>
-   <feature url="features/org.eclipse.jwt.feature_1.5.0.qualifier.jar" id="org.eclipse.jwt.feature" version="1.5.0.qualifier"/>
+   <feature url="features/org.eclipse.jwt.feature_1.6.0.qualifier.jar" id="org.eclipse.jwt.feature" version="1.6.0.qualifier"/>
 </site>
diff --git a/releng/org.eclipse.jwt.p2updatesite/pom.xml b/releng/org.eclipse.jwt.p2updatesite/pom.xml
index 0093965..cc220ea 100644
--- a/releng/org.eclipse.jwt.p2updatesite/pom.xml
+++ b/releng/org.eclipse.jwt.p2updatesite/pom.xml
@@ -7,7 +7,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
   
   <groupId>org.eclipse.jwt</groupId>
diff --git a/releng/org.eclipse.jwt.test.feature/feature.xml b/releng/org.eclipse.jwt.test.feature/feature.xml
index 7072460..c6b55b3 100644
--- a/releng/org.eclipse.jwt.test.feature/feature.xml
+++ b/releng/org.eclipse.jwt.test.feature/feature.xml
@@ -2,7 +2,7 @@
 <feature
       id="org.eclipse.jwt.test.feature"
       label="JWT Test Feature"
-      version="1.5.0.qualifier"
+      version="1.6.0.qualifier"
       provider-name="Eclipse JWT">
 
    <description url="http://www.example.com/description">
@@ -27,20 +27,20 @@
       <import plugin="org.eclipse.emf.common" version="2.4.0" match="greaterOrEqual"/>
       <import plugin="org.eclipse.emf.edit" version="2.4.1" match="greaterOrEqual"/>
       <import plugin="org.eclipse.gef" version="3.4.0" match="greaterOrEqual"/>
-      <import plugin="org.eclipse.jwt.we" version="1.5.0" match="greaterOrEqual"/>
-      <import plugin="org.eclipse.jwt.converter" version="1.5.0" match="greaterOrEqual"/>
-      <import plugin="org.eclipse.jwt.transformations.baseTransformation" version="1.5.0" match="greaterOrEqual"/>
-      <import plugin="org.eclipse.jwt.transformations.bpmn" version="1.5.0" match="greaterOrEqual"/>
-      <import plugin="org.eclipse.jwt.transformation.stpim" version="1.5.0" match="greaterOrEqual"/>
-      <import plugin="org.eclipse.jwt.transformations.xpdl" version="1.5.0" match="greaterOrEqual"/>
-      <import plugin="org.eclipse.jwt.we.conf.model.editor" version="1.5.0" match="greaterOrEqual"/>
+      <import plugin="org.eclipse.jwt.we" version="1.6.0" match="greaterOrEqual"/>
+      <import plugin="org.eclipse.jwt.converter" version="1.6.0" match="greaterOrEqual"/>
+      <import plugin="org.eclipse.jwt.transformations.baseTransformation" version="1.6.0" match="greaterOrEqual"/>
+      <import plugin="org.eclipse.jwt.transformations.bpmn" version="1.6.0" match="greaterOrEqual"/>
+      <import plugin="org.eclipse.jwt.transformation.stpim" version="1.6.0" match="greaterOrEqual"/>
+      <import plugin="org.eclipse.jwt.transformations.xpdl" version="1.6.0" match="greaterOrEqual"/>
+      <import plugin="org.eclipse.jwt.we.conf.model.editor" version="1.6.0" match="greaterOrEqual"/>
    </requires>
 
    <plugin
          id="org.eclipse.jwt.tests"
          download-size="0"
          install-size="0"
-         version="1.5.0.qualifier"
+         version="1.6.0.qualifier"
          unpack="false"/>
 
 </feature>
diff --git a/releng/org.eclipse.jwt.test.feature/pom.xml b/releng/org.eclipse.jwt.test.feature/pom.xml
index 9851190..3c24b83 100644
--- a/releng/org.eclipse.jwt.test.feature/pom.xml
+++ b/releng/org.eclipse.jwt.test.feature/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.test.feature</artifactId>
diff --git a/transformations/jwt-transformation-base/META-INF/MANIFEST.MF b/transformations/jwt-transformation-base/META-INF/MANIFEST.MF
index c70f3ea..3f09bd9 100644
--- a/transformations/jwt-transformation-base/META-INF/MANIFEST.MF
+++ b/transformations/jwt-transformation-base/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: JWT Transformation Base Plug-in
 Bundle-SymbolicName: org.eclipse.jwt.transformations.baseTransformation;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-Activator: org.eclipse.jwt.transformations.internal.init.Activator
 Bundle-Localization: plugin
 Require-Bundle: org.eclipse.core.runtime;bundle-version="3.5.0";visibility:=reexport,
@@ -11,8 +11,8 @@
  org.eclipse.emf.edit.ui;bundle-version="2.4.0",
  org.eclipse.core.filesystem,
  org.eclipse.ui.ide,
- org.eclipse.jwt.we;bundle-version="1.5.0",
- org.eclipse.jwt.meta;bundle-version="1.5.0"
+ org.eclipse.jwt.we;bundle-version="1.6.0",
+ org.eclipse.jwt.meta;bundle-version="1.6.0"
 Bundle-ActivationPolicy: lazy
 Export-Package: org.eclipse.jwt.transformations.api,
  org.eclipse.jwt.transformations.api.io,
diff --git a/transformations/jwt-transformation-base/pom.xml b/transformations/jwt-transformation-base/pom.xml
index f73d142..41b76ca 100644
--- a/transformations/jwt-transformation-base/pom.xml
+++ b/transformations/jwt-transformation-base/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.transformations.baseTransformation</artifactId>
diff --git a/transformations/jwt-transformation-bpmn/META-INF/MANIFEST.MF b/transformations/jwt-transformation-bpmn/META-INF/MANIFEST.MF
index 6d5774e..35b483b 100644
--- a/transformations/jwt-transformation-bpmn/META-INF/MANIFEST.MF
+++ b/transformations/jwt-transformation-bpmn/META-INF/MANIFEST.MF
@@ -2,13 +2,13 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: JWT transformation from & to STP-BPMN
 Bundle-SymbolicName: org.eclipse.jwt.transformations.bpmn;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-Localization: plugin
 Require-Bundle: org.eclipse.m2m.atl.engine;bundle-version="3.0.0",
  org.eclipse.m2m.atl.engine.emfvm;bundle-version="3.0.0",
  org.eclipse.m2m.atl.drivers.emf4atl;bundle-version="3.0.0",
- org.eclipse.jwt.transformations.baseTransformation;bundle-version="1.5.0",
- org.eclipse.jwt.meta;bundle-version="1.5.0"
+ org.eclipse.jwt.transformations.baseTransformation;bundle-version="1.6.0",
+ org.eclipse.jwt.meta;bundle-version="1.6.0"
 Bundle-ActivationPolicy: lazy
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
 Bundle-Vendor: Eclipse JWT
diff --git a/transformations/jwt-transformation-bpmn/pom.xml b/transformations/jwt-transformation-bpmn/pom.xml
index 0ee2fa1..fa537a2 100644
--- a/transformations/jwt-transformation-bpmn/pom.xml
+++ b/transformations/jwt-transformation-bpmn/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.transformations.bpmn</artifactId>
diff --git a/transformations/jwt-transformation-properties/META-INF/MANIFEST.MF b/transformations/jwt-transformation-properties/META-INF/MANIFEST.MF
index d12c43b..587de80 100644
--- a/transformations/jwt-transformation-properties/META-INF/MANIFEST.MF
+++ b/transformations/jwt-transformation-properties/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: Extraction of properties from model into a .properties file
 Bundle-SymbolicName: org.eclipse.jwt.transformations.properties;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-Localization: plugin
 Bundle-Vendor: Eclipse JWT
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
@@ -11,9 +11,9 @@
  org.eclipse.ui;bundle-version="3.5.0",
  org.eclipse.emf.edit;bundle-version="2.4.1",
  org.eclipse.emf.ecore.xmi;bundle-version="2.4.1",
- org.eclipse.jwt.we;bundle-version="1.5.0",
- org.eclipse.jwt.meta;bundle-version="1.5.0",
- org.eclipse.jwt.we.conf.model;bundle-version="1.5.0",
- org.eclipse.jwt.we.conf.property.model;bundle-version="1.5.0",
+ org.eclipse.jwt.we;bundle-version="1.6.0",
+ org.eclipse.jwt.meta;bundle-version="1.6.0",
+ org.eclipse.jwt.we.conf.model;bundle-version="1.6.0",
+ org.eclipse.jwt.we.conf.property.model;bundle-version="1.6.0",
  org.eclipse.jwt.transformations.baseTransformation;bundle-version="1.2.0"
 Bundle-ActivationPolicy: lazy
diff --git a/transformations/jwt-transformation-properties/pom.xml b/transformations/jwt-transformation-properties/pom.xml
index d75d58a..27497cb 100644
--- a/transformations/jwt-transformation-properties/pom.xml
+++ b/transformations/jwt-transformation-properties/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.transformations.properties</artifactId>
diff --git a/transformations/jwt-transformation-stpim/META-INF/MANIFEST.MF b/transformations/jwt-transformation-stpim/META-INF/MANIFEST.MF
index 245ae1a..95dce1c 100644
--- a/transformations/jwt-transformation-stpim/META-INF/MANIFEST.MF
+++ b/transformations/jwt-transformation-stpim/META-INF/MANIFEST.MF
@@ -2,12 +2,12 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: JWT Transformation from & to STP-IM
 Bundle-SymbolicName: org.eclipse.jwt.transformation.stpim;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-Localization: plugin
 Require-Bundle: org.eclipse.m2m.atl.drivers.emf4atl;bundle-version="3.0.0",
  org.eclipse.m2m.atl.engine;bundle-version="3.0.0",
- org.eclipse.jwt.transformations.baseTransformation;bundle-version="1.5.0",
- org.eclipse.jwt.meta;bundle-version="1.5.0"
+ org.eclipse.jwt.transformations.baseTransformation;bundle-version="1.6.0",
+ org.eclipse.jwt.meta;bundle-version="1.6.0"
 Bundle-ActivationPolicy: lazy
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
 Bundle-Vendor: Eclipse JWT
diff --git a/transformations/jwt-transformation-stpim/pom.xml b/transformations/jwt-transformation-stpim/pom.xml
index 5ea1245..43f7a95 100644
--- a/transformations/jwt-transformation-stpim/pom.xml
+++ b/transformations/jwt-transformation-stpim/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.transformation.stpim</artifactId>
diff --git a/transformations/jwt-transformation-xpdl/META-INF/MANIFEST.MF b/transformations/jwt-transformation-xpdl/META-INF/MANIFEST.MF
index 21cb9ec..2f227b7 100644
--- a/transformations/jwt-transformation-xpdl/META-INF/MANIFEST.MF
+++ b/transformations/jwt-transformation-xpdl/META-INF/MANIFEST.MF
@@ -2,11 +2,11 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: JWT Transformation to XPDL
 Bundle-SymbolicName: org.eclipse.jwt.transformations.xpdl;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-Localization: plugin
-Require-Bundle: org.eclipse.jwt.transformations.baseTransformation;bundle-version="1.5.0",
- org.eclipse.jwt.transformations.xslt.tools;bundle-version="1.5.0",
- org.eclipse.jwt.transformations.properties;bundle-version="1.5.0"
+Require-Bundle: org.eclipse.jwt.transformations.baseTransformation;bundle-version="1.6.0",
+ org.eclipse.jwt.transformations.xslt.tools;bundle-version="1.6.0",
+ org.eclipse.jwt.transformations.properties;bundle-version="1.6.0"
 Bundle-ActivationPolicy: lazy
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
 Bundle-Vendor: Eclipse JWT
diff --git a/transformations/jwt-transformation-xpdl/pom.xml b/transformations/jwt-transformation-xpdl/pom.xml
index 49b7e04..5930613 100644
--- a/transformations/jwt-transformation-xpdl/pom.xml
+++ b/transformations/jwt-transformation-xpdl/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.transformations.xpdl</artifactId>
diff --git a/transformations/jwt-transformation-xslt-tools/META-INF/MANIFEST.MF b/transformations/jwt-transformation-xslt-tools/META-INF/MANIFEST.MF
index cd91873..126610e 100644
--- a/transformations/jwt-transformation-xslt-tools/META-INF/MANIFEST.MF
+++ b/transformations/jwt-transformation-xslt-tools/META-INF/MANIFEST.MF
@@ -1,12 +1,12 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: JWT Transformation tools for XSLT
 Bundle-SymbolicName: org.eclipse.jwt.transformations.xslt.tools
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-Vendor: Eclipse JWT
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
 Require-Bundle: org.apache.xerces;bundle-version="2.9.0",
  com.ibm.icu;bundle-version="4.0.1",
- org.eclipse.jwt.transformations.baseTransformation;bundle-version="1.5.0",
+ org.eclipse.jwt.transformations.baseTransformation;bundle-version="1.6.0",
  org.apache.xalan;bundle-version="2.7.0"
 Export-Package: org.eclipse.jwt.transformations.xslt.tools
 Eclipse-RegisterBuddy: org.apache.xalan
diff --git a/transformations/jwt-transformation-xslt-tools/pom.xml b/transformations/jwt-transformation-xslt-tools/pom.xml
index 2b8c604..17abef6 100644
--- a/transformations/jwt-transformation-xslt-tools/pom.xml
+++ b/transformations/jwt-transformation-xslt-tools/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.transformations.xslt.tools</artifactId>
diff --git a/we-plugins/jwt-we-action-doc/META-INF/MANIFEST.MF b/we-plugins/jwt-we-action-doc/META-INF/MANIFEST.MF
index 2b593b6..97446e0 100644
--- a/we-plugins/jwt-we-action-doc/META-INF/MANIFEST.MF
+++ b/we-plugins/jwt-we-action-doc/META-INF/MANIFEST.MF
@@ -2,13 +2,13 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: JWT WE Documentation Plugin
 Bundle-SymbolicName: org.eclipse.jwt.we.plugins.doc;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-Activator: org.eclipse.jwt.we.plugins.doc.Activator
 Require-Bundle: org.eclipse.core.runtime;bundle-version="3.5.0",
  org.eclipse.emf.edit.ui;bundle-version="2.4.0",
  org.eclipse.gef;bundle-version="3.4.0",
- org.eclipse.jwt.meta;bundle-version="1.5.0",
- org.eclipse.jwt.we;bundle-version="1.5.0"
+ org.eclipse.jwt.meta;bundle-version="1.6.0",
+ org.eclipse.jwt.we;bundle-version="1.6.0"
 Bundle-ActivationPolicy: lazy
 Bundle-Localization: src/org/eclipse/jwt/we/plugins/doc/docplugin
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
diff --git a/we-plugins/jwt-we-action-doc/pom.xml b/we-plugins/jwt-we-action-doc/pom.xml
index 15ed769..8f6368d 100644
--- a/we-plugins/jwt-we-action-doc/pom.xml
+++ b/we-plugins/jwt-we-action-doc/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.we.plugins.doc</artifactId>
diff --git a/we-plugins/jwt-we-helpers-application/META-INF/MANIFEST.MF b/we-plugins/jwt-we-helpers-application/META-INF/MANIFEST.MF
index 016cbc5..3d36d69 100644
--- a/we-plugins/jwt-we-helpers-application/META-INF/MANIFEST.MF
+++ b/we-plugins/jwt-we-helpers-application/META-INF/MANIFEST.MF
@@ -2,14 +2,14 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: JWT WE helpers for Application
 Bundle-SymbolicName: org.eclipse.jwt.we.helpers.application;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Require-Bundle: org.eclipse.jdt.ui,
  org.eclipse.jdt.core,
  org.eclipse.core.resources;bundle-version="3.5.0",
  org.eclipse.core.runtime;bundle-version="3.5.0",
  org.eclipse.emf.edit.ui;bundle-version="2.4.0",
- org.eclipse.jwt.meta;bundle-version="1.5.0",
- org.eclipse.jwt.we;bundle-version="1.5.0"
+ org.eclipse.jwt.meta;bundle-version="1.6.0",
+ org.eclipse.jwt.we;bundle-version="1.6.0"
 Bundle-Vendor: Eclipse JWT
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
 Export-Package: org.eclipse.jwt.we.helpers.app.changeListener.applicationMethod,
diff --git a/we-plugins/jwt-we-helpers-application/pom.xml b/we-plugins/jwt-we-helpers-application/pom.xml
index 7fc0146..346febc 100644
--- a/we-plugins/jwt-we-helpers-application/pom.xml
+++ b/we-plugins/jwt-we-helpers-application/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.we.helpers.application</artifactId>
diff --git a/we-plugins/jwt-we-helpers-files/META-INF/MANIFEST.MF b/we-plugins/jwt-we-helpers-files/META-INF/MANIFEST.MF
index 5be1826..3e8d801 100644
--- a/we-plugins/jwt-we-helpers-files/META-INF/MANIFEST.MF
+++ b/we-plugins/jwt-we-helpers-files/META-INF/MANIFEST.MF
@@ -2,10 +2,10 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: JWT WE helpers for files
 Bundle-SymbolicName: org.eclipse.jwt.we.helpers.files;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
 Require-Bundle: org.eclipse.core.runtime;bundle-version="3.5.0",
  org.eclipse.emf.edit.ui;bundle-version="2.4.0",
- org.eclipse.jwt.we;bundle-version="1.5.0"
+ org.eclipse.jwt.we;bundle-version="1.6.0"
 Export-Package: org.eclipse.jwt.we.helpers.files.editors.properties.widgets
 Bundle-Vendor: Eclipse JWT
diff --git a/we-plugins/jwt-we-helpers-files/pom.xml b/we-plugins/jwt-we-helpers-files/pom.xml
index 972e107..20ff53e 100644
--- a/we-plugins/jwt-we-helpers-files/pom.xml
+++ b/we-plugins/jwt-we-helpers-files/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.we.helpers.files</artifactId>
diff --git a/we-plugins/jwt-we-view-bpmn/META-INF/MANIFEST.MF b/we-plugins/jwt-we-view-bpmn/META-INF/MANIFEST.MF
index 120e166..077d850 100644
--- a/we-plugins/jwt-we-view-bpmn/META-INF/MANIFEST.MF
+++ b/we-plugins/jwt-we-view-bpmn/META-INF/MANIFEST.MF
@@ -2,16 +2,16 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: Jwt-we-view-bpmn
 Bundle-SymbolicName: org.eclipse.jwt.we.plugins.viewbpmn;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-Activator: org.eclipse.jwt.we.plugins.viewbpmn.Activator
 Require-Bundle: org.eclipse.core.runtime,
  org.eclipse.jwt.we;bundle-version="1.2.0",
  org.eclipse.gef;bundle-version="3.7.2",
  org.eclipse.emf.common.ui;bundle-version="2.7.0",
  org.eclipse.emf.edit;bundle-version="2.7.2",
- org.eclipse.jwt.we.conf.edit;bundle-version="1.5.0",
- org.eclipse.jwt.meta;bundle-version="1.5.0",
- org.eclipse.jwt.we.plugins.viewepc;bundle-version="1.5.0"
+ org.eclipse.jwt.we.conf.edit;bundle-version="1.6.0",
+ org.eclipse.jwt.meta;bundle-version="1.6.0",
+ org.eclipse.jwt.we.plugins.viewepc;bundle-version="1.6.0"
 Bundle-ActivationPolicy: lazy
 Bundle-RequiredExecutionEnvironment: JavaSE-1.6
 Bundle-Vendor: Eclipse JWT
diff --git a/we-plugins/jwt-we-view-bpmn/pom.xml b/we-plugins/jwt-we-view-bpmn/pom.xml
index 7664b9a..6bc82e6 100644
--- a/we-plugins/jwt-we-view-bpmn/pom.xml
+++ b/we-plugins/jwt-we-view-bpmn/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.we.plugins.viewbpmn</artifactId>
diff --git a/we-plugins/jwt-we-view-epc/META-INF/MANIFEST.MF b/we-plugins/jwt-we-view-epc/META-INF/MANIFEST.MF
index bf397de..e8a02be 100644
--- a/we-plugins/jwt-we-view-epc/META-INF/MANIFEST.MF
+++ b/we-plugins/jwt-we-view-epc/META-INF/MANIFEST.MF
@@ -2,15 +2,15 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: JWT WE EPC View
 Bundle-SymbolicName: org.eclipse.jwt.we.plugins.viewepc;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-Activator: org.eclipse.jwt.we.plugins.viewepc.Activator
 Require-Bundle: org.eclipse.core.runtime;bundle-version="3.5.0",
  org.eclipse.gef;bundle-version="3.4.0",
  org.eclipse.emf.common.ui;bundle-version="2.4.0",
  org.eclipse.emf.edit;bundle-version="2.4.1",
- org.eclipse.jwt.we.conf.edit;bundle-version="1.5.0",
- org.eclipse.jwt.meta;bundle-version="1.5.0",
- org.eclipse.jwt.we;bundle-version="1.5.0"
+ org.eclipse.jwt.we.conf.edit;bundle-version="1.6.0",
+ org.eclipse.jwt.meta;bundle-version="1.6.0",
+ org.eclipse.jwt.we;bundle-version="1.6.0"
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
 Bundle-Vendor: Eclipse JWT
 Bundle-ActivationPolicy: lazy
diff --git a/we-plugins/jwt-we-view-epc/pom.xml b/we-plugins/jwt-we-view-epc/pom.xml
index 7519920..4c07ce4 100644
--- a/we-plugins/jwt-we-view-epc/pom.xml
+++ b/we-plugins/jwt-we-view-epc/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.we.plugins.viewepc</artifactId>
diff --git a/we-plugins/jwt-we-view-uml/META-INF/MANIFEST.MF b/we-plugins/jwt-we-view-uml/META-INF/MANIFEST.MF
index 1cb96ae..e289e03 100644
--- a/we-plugins/jwt-we-view-uml/META-INF/MANIFEST.MF
+++ b/we-plugins/jwt-we-view-uml/META-INF/MANIFEST.MF
@@ -2,14 +2,14 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: JWT WE UML View
 Bundle-SymbolicName: org.eclipse.jwt.we.plugins.viewuml;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-Activator: org.eclipse.jwt.we.plugins.viewuml.Activator
 Require-Bundle: org.eclipse.core.runtime;bundle-version="3.5.0",
  org.eclipse.emf.ecore;bundle-version="2.5.0",
  org.eclipse.emf.edit;bundle-version="2.5.0",
  org.eclipse.gef;bundle-version="3.4.0",
- org.eclipse.jwt.we;bundle-version="1.5.0",
- org.eclipse.jwt.meta;bundle-version="1.5.0",
+ org.eclipse.jwt.we;bundle-version="1.6.0",
+ org.eclipse.jwt.meta;bundle-version="1.6.0",
  org.eclipse.emf.common.ui;bundle-version="2.4.0"
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
 Bundle-Vendor: Eclipse JWT
diff --git a/we-plugins/jwt-we-view-uml/pom.xml b/we-plugins/jwt-we-view-uml/pom.xml
index 25d7818..3aab010 100644
--- a/we-plugins/jwt-we-view-uml/pom.xml
+++ b/we-plugins/jwt-we-view-uml/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.we.plugins.viewuml</artifactId>
diff --git a/we/jwt-we-conf-model.edit/META-INF/MANIFEST.MF b/we/jwt-we-conf-model.edit/META-INF/MANIFEST.MF
index 11702d0..13791b8 100644
--- a/we/jwt-we-conf-model.edit/META-INF/MANIFEST.MF
+++ b/we/jwt-we-conf-model.edit/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: %pluginName
 Bundle-SymbolicName: org.eclipse.jwt.we.conf.edit;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-ClassPath: .
 Bundle-Activator: org.eclipse.jwt.we.conf.edit.provider.ConfMetaModelEditPlugin$Implementation
 Bundle-Vendor: Eclipse JWT
@@ -10,7 +10,7 @@
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
 Require-Bundle: org.eclipse.core.runtime;bundle-version="3.5.0",
  org.eclipse.emf.ecore.editor,
- org.eclipse.jwt.we.conf.model;bundle-version="1.5.0"
+ org.eclipse.jwt.we.conf.model;bundle-version="1.6.0"
 Bundle-ActivationPolicy: lazy
 Export-Package: org.eclipse.jwt.we.conf.edit.aspects.provider,
  org.eclipse.jwt.we.conf.edit.provider,
diff --git a/we/jwt-we-conf-model.edit/pom.xml b/we/jwt-we-conf-model.edit/pom.xml
index be3564c..9fee84b 100644
--- a/we/jwt-we-conf-model.edit/pom.xml
+++ b/we/jwt-we-conf-model.edit/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.we.conf.edit</artifactId>
diff --git a/we/jwt-we-conf-model.editor/META-INF/MANIFEST.MF b/we/jwt-we-conf-model.editor/META-INF/MANIFEST.MF
index 551b22e..325f8f2 100644
--- a/we/jwt-we-conf-model.editor/META-INF/MANIFEST.MF
+++ b/we/jwt-we-conf-model.editor/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: %pluginName
 Bundle-SymbolicName: org.eclipse.jwt.we.conf.model.editor;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-ClassPath: .
 Bundle-Activator: org.eclipse.jwt.we.conf.presentation.ConfMetaModelEditorPlugin$Implementation
 Bundle-Vendor: Eclipse JWT
@@ -14,7 +14,7 @@
  org.eclipse.emf.edit.ui;bundle-version="2.4.0",
  org.eclipse.ui.ide,
  org.eclipse.emf.ecore.edit,
- org.eclipse.jwt.we.conf.model;bundle-version="1.5.0",
- org.eclipse.jwt.we.conf.edit;bundle-version="1.5.0"
+ org.eclipse.jwt.we.conf.model;bundle-version="1.6.0",
+ org.eclipse.jwt.we.conf.edit;bundle-version="1.6.0"
 Bundle-ActivationPolicy: lazy
 Export-Package: org.eclipse.jwt.we.conf.presentation
diff --git a/we/jwt-we-conf-model.editor/pom.xml b/we/jwt-we-conf-model.editor/pom.xml
index 3c6ba96..d4629cd 100644
--- a/we/jwt-we-conf-model.editor/pom.xml
+++ b/we/jwt-we-conf-model.editor/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.we.conf.model.editor</artifactId>
diff --git a/we/jwt-we-conf-model.we/META-INF/MANIFEST.MF b/we/jwt-we-conf-model.we/META-INF/MANIFEST.MF
index 386662d..97587da 100644
--- a/we/jwt-we-conf-model.we/META-INF/MANIFEST.MF
+++ b/we/jwt-we-conf-model.we/META-INF/MANIFEST.MF
@@ -2,16 +2,16 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: JWT WE ConfModel
 Bundle-SymbolicName: org.eclipse.jwt.we.conf.we;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-Activator: org.eclipse.jwt.we.conf.we.Activator
 Require-Bundle: org.eclipse.core.runtime;bundle-version="3.5.0",
  org.eclipse.ui.views.properties.tabbed;bundle-version="3.4.0",
  org.eclipse.emf.edit.ui;bundle-version="2.4.0",
- org.eclipse.jwt.we;bundle-version="1.5.0",
- org.eclipse.jwt.we.conf.model;bundle-version="1.5.0",
- org.eclipse.jwt.we.conf.edit;bundle-version="1.5.0",
- org.eclipse.jwt.we.conf.property.edit;bundle-version="1.5.0",
- org.eclipse.jwt.meta;bundle-version="1.5.0"
+ org.eclipse.jwt.we;bundle-version="1.6.0",
+ org.eclipse.jwt.we.conf.model;bundle-version="1.6.0",
+ org.eclipse.jwt.we.conf.edit;bundle-version="1.6.0",
+ org.eclipse.jwt.we.conf.property.edit;bundle-version="1.6.0",
+ org.eclipse.jwt.meta;bundle-version="1.6.0"
 Bundle-ActivationPolicy: lazy
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
 Bundle-Vendor: Eclipse JWT
diff --git a/we/jwt-we-conf-model.we/pom.xml b/we/jwt-we-conf-model.we/pom.xml
index ef9fc29..de2d4c6 100644
--- a/we/jwt-we-conf-model.we/pom.xml
+++ b/we/jwt-we-conf-model.we/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.we.conf.we</artifactId>
diff --git a/we/jwt-we-conf-model/META-INF/MANIFEST.MF b/we/jwt-we-conf-model/META-INF/MANIFEST.MF
index 4aaf186..ea564d8 100644
--- a/we/jwt-we-conf-model/META-INF/MANIFEST.MF
+++ b/we/jwt-we-conf-model/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: %pluginName
 Bundle-SymbolicName: org.eclipse.jwt.we.conf.model;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-ClassPath: .
 Bundle-Vendor: Eclipse JWT
 Bundle-Localization: plugin
diff --git a/we/jwt-we-conf-model/pom.xml b/we/jwt-we-conf-model/pom.xml
index a9bff2b..70f52ce 100644
--- a/we/jwt-we-conf-model/pom.xml
+++ b/we/jwt-we-conf-model/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.we.conf.model</artifactId>
diff --git a/we/jwt-we-conf-property-model.edit/META-INF/MANIFEST.MF b/we/jwt-we-conf-property-model.edit/META-INF/MANIFEST.MF
index 16a0ca0..1daab09 100644
--- a/we/jwt-we-conf-property-model.edit/META-INF/MANIFEST.MF
+++ b/we/jwt-we-conf-property-model.edit/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: %pluginName
 Bundle-SymbolicName: org.eclipse.jwt.we.conf.property.edit;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-ClassPath: .
 Bundle-Activator: org.eclipse.jwt.we.conf.property.edit.provider.ConfPropertyEditPlugin$Implementation
 Bundle-Vendor: Eclipse JWT
@@ -10,9 +10,9 @@
 Require-Bundle: org.eclipse.core.runtime;bundle-version="3.5.0",
  org.eclipse.emf.ecore.edit,
  org.eclipse.emf.edit.ui;bundle-version="2.4.0",
- org.eclipse.jwt.we.conf.model;bundle-version="1.5.0",
- org.eclipse.jwt.we.conf.edit;bundle-version="1.5.0",
- org.eclipse.jwt.we.conf.property.model;bundle-version="1.5.0"
+ org.eclipse.jwt.we.conf.model;bundle-version="1.6.0",
+ org.eclipse.jwt.we.conf.edit;bundle-version="1.6.0",
+ org.eclipse.jwt.we.conf.property.model;bundle-version="1.6.0"
 Eclipse-LazyStart: true
 Bundle-ActivationPolicy: lazy
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
diff --git a/we/jwt-we-conf-property-model.edit/pom.xml b/we/jwt-we-conf-property-model.edit/pom.xml
index 3013693..82fd101 100644
--- a/we/jwt-we-conf-property-model.edit/pom.xml
+++ b/we/jwt-we-conf-property-model.edit/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.we.conf.property.edit</artifactId>
diff --git a/we/jwt-we-conf-property-model/META-INF/MANIFEST.MF b/we/jwt-we-conf-property-model/META-INF/MANIFEST.MF
index ade0d8e..8539503 100644
--- a/we/jwt-we-conf-property-model/META-INF/MANIFEST.MF
+++ b/we/jwt-we-conf-property-model/META-INF/MANIFEST.MF
@@ -2,9 +2,9 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: JWT WE ConfModel WE
 Bundle-SymbolicName: org.eclipse.jwt.we.conf.property.model;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Require-Bundle: org.eclipse.emf.ecore;bundle-version="2.4.1",
- org.eclipse.jwt.we.conf.model;bundle-version="1.5.0"
+ org.eclipse.jwt.we.conf.model;bundle-version="1.6.0"
 Bundle-ActivationPolicy: lazy
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
 Bundle-Vendor: Eclipse JWT
diff --git a/we/jwt-we-conf-property-model/pom.xml b/we/jwt-we-conf-property-model/pom.xml
index 0fa9e59..7e47bca 100644
--- a/we/jwt-we-conf-property-model/pom.xml
+++ b/we/jwt-we-conf-property-model/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.we.conf.property.model</artifactId>
diff --git a/we/jwt-we-view-editor/META-INF/MANIFEST.MF b/we/jwt-we-view-editor/META-INF/MANIFEST.MF
index 5f89eb7..ba3cd6a 100644
--- a/we/jwt-we-view-editor/META-INF/MANIFEST.MF
+++ b/we/jwt-we-view-editor/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: %plugin_Name
 Bundle-SymbolicName: org.eclipse.jwt.we_view_editor;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-Localization: viewplugin
 Bundle-Activator: org.eclipse.jwt.we_view_editor.Activator
 Require-Bundle: org.eclipse.ui;bundle-version="3.5.0",
@@ -13,8 +13,8 @@
  org.eclipse.ui.editors,
  org.eclipse.emf.ecore.xmi;bundle-version="2.4.0",
  org.eclipse.emf.edit.ui;bundle-version="2.4.0",
- org.eclipse.jwt.we;bundle-version="1.5.0",
- org.eclipse.jwt.meta;bundle-version="1.5.0"
+ org.eclipse.jwt.we;bundle-version="1.6.0",
+ org.eclipse.jwt.meta;bundle-version="1.6.0"
 Bundle-ActivationPolicy: lazy
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
 Bundle-Vendor: Eclipse JWT
diff --git a/we/jwt-we-view-editor/pom.xml b/we/jwt-we-view-editor/pom.xml
index 622c97f..b07a0b7 100644
--- a/we/jwt-we-view-editor/pom.xml
+++ b/we/jwt-we-view-editor/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.we_view_editor</artifactId>
diff --git a/we/jwt-we/META-INF/MANIFEST.MF b/we/jwt-we/META-INF/MANIFEST.MF
index 2fc93d0..7b30498 100644
--- a/we/jwt-we/META-INF/MANIFEST.MF
+++ b/we/jwt-we/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: %plugin_Name
 Bundle-SymbolicName: org.eclipse.jwt.we;singleton:=true
-Bundle-Version: 1.5.0.qualifier
+Bundle-Version: 1.6.0.qualifier
 Bundle-Activator: org.eclipse.jwt.we.Plugin
 Bundle-Vendor: Eclipse JWT
 Bundle-Localization: plugin
@@ -17,16 +17,16 @@
  org.eclipse.zest.layouts;bundle-version="1.1.0",
  org.jdom;bundle-version="1.0.0",
  com.ibm.icu;bundle-version="4.0.1",
- org.eclipse.jwt.we.conf.edit;bundle-version="1.5.0",
- org.eclipse.jwt.converter;bundle-version="1.5.0",
- org.eclipse.jwt.meta;bundle-version="1.5.0",
+ org.eclipse.jwt.we.conf.edit;bundle-version="1.6.0",
+ org.eclipse.jwt.converter;bundle-version="1.6.0",
+ org.eclipse.jwt.meta;bundle-version="1.6.0",
  org.apache.batik.util;bundle-version="1.6.0",
  org.apache.batik.dom;bundle-version="1.6.0",
  org.apache.batik.dom.svg;bundle-version="1.6.0",
  org.apache.batik.svggen;bundle-version="1.6.0",
  org.apache.batik.ext.awt;bundle-version="1.6.0",
- org.eclipse.gmf.runtime.common.ui;bundle-version="1.5.0",
- org.eclipse.gmf.runtime.draw2d.ui;bundle-version="1.5.0",
+ org.eclipse.gmf.runtime.common.ui;bundle-version="1.6.0",
+ org.eclipse.gmf.runtime.draw2d.ui;bundle-version="1.6.0",
  org.eclipse.gmf.runtime.draw2d.ui.render;bundle-version="1.4.1",
  org.w3c.dom.svg;bundle-version="1.1.0"
 Bundle-ActivationPolicy: lazy
diff --git a/we/jwt-we/pom.xml b/we/jwt-we/pom.xml
index 1b8f7cd..361ce80 100644
--- a/we/jwt-we/pom.xml
+++ b/we/jwt-we/pom.xml
@@ -6,7 +6,7 @@
     <relativePath>../../releng/mvn-jwt-builder/pom.xml</relativePath>
     <groupId>org.eclipse.jwt</groupId>
     <artifactId>parent</artifactId>
-    <version>1.5.0.qualifier</version>
+    <version>1.6.0.qualifier</version>
   </parent>
 
   <artifactId>org.eclipse.jwt.we</artifactId>