Merge branch 'develop'
diff --git a/examples/plugins/org.eclipse.bpel.extensionssample.ui/META-INF/MANIFEST.MF b/examples/plugins/org.eclipse.bpel.extensionssample.ui/META-INF/MANIFEST.MF
index 8066b71..74acce2 100644
--- a/examples/plugins/org.eclipse.bpel.extensionssample.ui/META-INF/MANIFEST.MF
+++ b/examples/plugins/org.eclipse.bpel.extensionssample.ui/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: BPEL Extensions Sample UI Plug-in
 Bundle-SymbolicName: org.eclipse.bpel.extensionssample.ui;singleton:=true
-Bundle-Version: 0.8.0.qualifier
+Bundle-Version: 1.0.0.qualifier
 Bundle-Activator: org.eclipse.bpel.extensionssample.ui.Activator
 Require-Bundle: org.eclipse.ui,
  org.eclipse.core.runtime,
diff --git a/examples/projects/org.eclipse.bpel.examples.orderprocessing/.project b/examples/projects/org.eclipse.bpel.examples.orderprocessing/.project
index c554e28..f6f6cf1 100644
--- a/examples/projects/org.eclipse.bpel.examples.orderprocessing/.project
+++ b/examples/projects/org.eclipse.bpel.examples.orderprocessing/.project
@@ -5,7 +5,29 @@
 	<projects>
 	</projects>
 	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.wst.common.project.facet.core.builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.wst.validation.validationbuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.bpel.validator.builder</name>
+			<arguments>
+				<dictionary>
+					<key>debug</key>
+					<value>false</value>
+				</dictionary>
+			</arguments>
+		</buildCommand>
 	</buildSpec>
 	<natures>
+		<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
+		<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
+		<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
 	</natures>
 </projectDescription>
diff --git a/examples/projects/org.eclipse.bpel.examples.orderprocessing/OASISSampleProcess.bpel b/examples/projects/org.eclipse.bpel.examples.orderprocessing/OASISSampleProcess.bpel
deleted file mode 100644
index e2d6fa5..0000000
--- a/examples/projects/org.eclipse.bpel.examples.orderprocessing/OASISSampleProcess.bpel
+++ /dev/null
@@ -1,74 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<bpws:process xmlns:bpws="http://schemas.xmlsoap.org/ws/2004/03/business-process/" xmlns:lns="http://manufacturing.org/wsdl/purchase" exitOnStandardFault="yes" name="purchaseOrderProcess" targetNamespace="http://acme.com/ws-bp/purchase">
-  <bpws:documentation>A simple example of a WS-BPEL process for handling a purchase order.</bpws:documentation>
-  <bpws:import importType="http://schemas.xmlsoap.org/wsdl/" location="OASISSampleProcess.wsdl" namespace="http://manufacturing.org/wsdl/purchase"/>
-  <bpws:partnerLinks>
-    <bpws:partnerLink myRole="purchaseService" name="purchasing" partnerLinkType="lns:purchasingLT"/>
-    <bpws:partnerLink myRole="invoiceRequester" name="invoicing" partnerLinkType="lns:invoicingLT" partnerRole="invoiceService"/>
-    <bpws:partnerLink myRole="shippingRequester" name="shipping" partnerLinkType="lns:shippingLT" partnerRole="shippingService"/>
-    <bpws:partnerLink name="scheduling" partnerLinkType="lns:schedulingLT" partnerRole="schedulingService"/>
-  </bpws:partnerLinks>
-  <bpws:variables>
-    <bpws:variable messageType="lns:POMessage" name="PO"/>
-    <bpws:variable messageType="lns:InvMessage" name="Invoice"/>
-    <bpws:variable messageType="lns:orderFaultType" name="POFault"/>
-    <bpws:variable messageType="lns:shippingRequestMessage" name="shippingRequest"/>
-    <bpws:variable messageType="lns:shippingInfoMessage" name="shippingInfo"/>
-    <bpws:variable messageType="lns:scheduleMessage" name="shippingSchedule"/>
-  </bpws:variables>
-  <bpws:faultHandlers>
-    <bpws:catch faultMessageType="lns:orderFaultType" faultName="lns:cannotCompleteOrder" faultVariable="POFault">
-      <bpws:reply faultName="bpws:cannotCompleteOrder" operation="sendPurchaseOrder" partnerLink="purchasing" portType="lns:purchaseOrderPT" variable="POFault"/>
-    </bpws:catch>
-  </bpws:faultHandlers>
-  <bpws:sequence>
-    <bpws:receive operation="sendPurchaseOrder" partnerLink="purchasing" portType="lns:purchaseOrderPT" variable="PO"/>
-    <bpws:flow>
-      <bpws:documentation>
-
-          A parallel flow to handle shipping, invoicing and scheduling
-
-        </bpws:documentation>
-      <bpws:links>
-        <bpws:link name="ship-to-invoice"/>
-        <bpws:link name="ship-to-scheduling"/>
-      </bpws:links>
-      <bpws:sequence>
-        <bpws:assign validateXML="no">
-          <bpws:copy>
-            <bpws:from part="customerInfo" variable="PO"/>
-            <bpws:to part="customerInfo" variable="shippingRequest"/>
-          </bpws:copy>
-        </bpws:assign>
-        <bpws:invoke inputVariable="shippingRequest" operation="requestShipping" outputVariable="shippingInfo" partnerLink="shipping" portType="lns:shippingPT">
-          <bpws:sources>
-            <bpws:source linkName="ship-to-invoice"/>
-          </bpws:sources>
-        </bpws:invoke>
-        <bpws:receive operation="sendSchedule" partnerLink="shipping" portType="lns:shippingCallbackPT" variable="shippingSchedule">
-          <bpws:sources>
-            <bpws:source linkName="ship-to-scheduling"/>
-          </bpws:sources>
-        </bpws:receive>
-      </bpws:sequence>
-      <bpws:sequence>
-        <bpws:invoke inputVariable="PO" operation="initiatePriceCalculation" partnerLink="invoicing" portType="lns:computePricePT"/>
-        <bpws:invoke inputVariable="shippingInfo" operation="sendShippingPrice" partnerLink="invoicing" portType="lns:computePricePT">
-          <bpws:targets>
-            <bpws:target linkName="ship-to-invoice"/>
-          </bpws:targets>
-        </bpws:invoke>
-        <bpws:receive operation="sendInvoice" partnerLink="invoicing" portType="lns:invoiceCallbackPT" variable="Invoice"/>
-      </bpws:sequence>
-      <bpws:sequence>
-        <bpws:invoke inputVariable="PO" operation="requestProductionScheduling" partnerLink="scheduling" portType="lns:schedulingPT"/>
-        <bpws:invoke inputVariable="shippingSchedule" operation="sendShippingSchedule" partnerLink="scheduling" portType="lns:schedulingPT">
-          <bpws:targets>
-            <bpws:target linkName="ship-to-scheduling"/>
-          </bpws:targets>
-        </bpws:invoke>
-      </bpws:sequence>
-    </bpws:flow>
-    <bpws:reply operation="sendPurchaseOrder" partnerLink="purchasing" portType="lns:purchaseOrderPT" variable="Invoice"/>
-  </bpws:sequence>
-</bpws:process>
diff --git a/examples/projects/org.eclipse.bpel.examples.orderprocessing/OASISSampleProcess.bpelex b/examples/projects/org.eclipse.bpel.examples.orderprocessing/OASISSampleProcess.bpelex
deleted file mode 100644
index 8ae4ca6..0000000
--- a/examples/projects/org.eclipse.bpel.examples.orderprocessing/OASISSampleProcess.bpelex
+++ /dev/null
@@ -1,111 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<extensionmodel:ExtensionMap xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:extensionmodel="http:///extensionmodel.ecore" xmlns:org.eclipse.bpel.ui.uiextensionmodel="http:///org/eclipse/bpel/ui/uiextensionmodel.ecore" namespace="http://org.eclipse.bpel.ui/">
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@variables/@children.0"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:VariableExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@variables/@children.1"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:VariableExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@variables/@children.2"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:VariableExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@variables/@children.3"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:VariableExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@variables/@children.4"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:VariableExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@variables/@children.5"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:VariableExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@activity"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@activity/@activities.0"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@activity/@activities.1"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@activity/@activities.1/@activities.0"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension" x="140" y="3"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@activity/@activities.1/@activities.0/@activities.0"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@activity/@activities.1/@activities.0/@activities.0/@copy.0"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:CopyExtension" fromType="1" toType="1"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@activity/@activities.1/@activities.0/@activities.1"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@activity/@activities.1/@activities.0/@activities.2"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@activity/@activities.1/@activities.1"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension" x="-25" y="5"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@activity/@activities.1/@activities.1/@activities.0"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@activity/@activities.1/@activities.1/@activities.1"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@activity/@activities.1/@activities.1/@activities.2"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@activity/@activities.1/@activities.2"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension" x="268" y="6"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@activity/@activities.1/@activities.2/@activities.0"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@activity/@activities.1/@activities.2/@activities.1"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@activity/@activities.1/@links/@children.0"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:LinkExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@activity/@activities.1/@links/@children.1"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:LinkExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@activity/@activities.2"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@faultHandlers/@catch.0/@faultVariable"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:VariableExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#//@faultHandlers/@catch.0/@activity"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ActivityExtension"/>
-  </extensions>
-  <extensions>
-    <extendedObject href="OASISSampleProcess.bpel#/"/>
-    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ProcessExtension" modificationStamp="1138813944000"/>
-  </extensions>
-</extensionmodel:ExtensionMap>
diff --git a/examples/projects/org.eclipse.bpel.examples.orderprocessing/bpelContent/OASISSampleProcess.bpel b/examples/projects/org.eclipse.bpel.examples.orderprocessing/bpelContent/OASISSampleProcess.bpel
new file mode 100644
index 0000000..50a39ea
--- /dev/null
+++ b/examples/projects/org.eclipse.bpel.examples.orderprocessing/bpelContent/OASISSampleProcess.bpel
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<bpel:process xmlns:lns="http://manufacturing.org/wsdl/purchase" exitOnStandardFault="yes" name="purchaseOrderProcess" targetNamespace="http://acme.com/ws-bp/purchase" xmlns:bpel="http://docs.oasis-open.org/wsbpel/2.0/process/executable">
+  <bpel:documentation>A simple example of a WS-BPEL process for handling a purchase order.</bpel:documentation>
+  <bpel:import importType="http://schemas.xmlsoap.org/wsdl/" location="OASISSampleProcess.wsdl" namespace="http://manufacturing.org/wsdl/purchase"/>
+  <bpel:partnerLinks>
+    <bpel:partnerLink myRole="purchaseService" name="purchasing" partnerLinkType="lns:purchasingLT"/>
+    <bpel:partnerLink myRole="invoiceRequester" name="invoicing" partnerLinkType="lns:invoicingLT" partnerRole="invoiceService"/>
+    <bpel:partnerLink myRole="shippingRequester" name="shipping" partnerLinkType="lns:shippingLT" partnerRole="shippingService"/>
+    <bpel:partnerLink name="scheduling" partnerLinkType="lns:schedulingLT" partnerRole="schedulingService"/>
+  </bpel:partnerLinks>
+  <bpel:variables>
+    <bpel:variable messageType="lns:POMessage" name="PO"/>
+    <bpel:variable messageType="lns:InvMessage" name="Invoice"/>
+    <bpel:variable messageType="lns:orderFaultType" name="POFault"/>
+    <bpel:variable messageType="lns:shippingRequestMessage" name="shippingRequest"/>
+    <bpel:variable messageType="lns:shippingInfoMessage" name="shippingInfo"/>
+    <bpel:variable messageType="lns:scheduleMessage" name="shippingSchedule"/>
+  </bpel:variables>
+  <bpel:faultHandlers>
+    <bpel:catch faultMessageType="lns:orderFaultType" faultName="lns:cannotCompleteOrder" faultVariable="POFault">
+      <bpel:reply faultName="bpel:cannotCompleteOrder" operation="sendPurchaseOrder" partnerLink="purchasing" portType="lns:purchaseOrderPT" variable="POFault"/>
+    </bpel:catch>
+  </bpel:faultHandlers>
+  <bpel:sequence>
+    <bpel:receive operation="sendPurchaseOrder" partnerLink="purchasing" portType="lns:purchaseOrderPT" variable="PO"/>
+    <bpel:flow>
+      <bpel:documentation>
+
+          A parallel flow to handle shipping, invoicing and scheduling
+
+        </bpel:documentation>
+      <bpel:links>
+        <bpel:link name="ship-to-invoice"/>
+        <bpel:link name="ship-to-scheduling"/>
+      </bpel:links>
+      <bpel:sequence>
+        <bpel:assign validateXML="no">
+          <bpel:copy>
+            <bpel:from part="customerInfo" variable="PO"/>
+            <bpel:to part="customerInfo" variable="shippingRequest"/>
+          </bpel:copy>
+        </bpel:assign>
+        <bpel:invoke inputVariable="shippingRequest" operation="requestShipping" outputVariable="shippingInfo" partnerLink="shipping" portType="lns:shippingPT">
+          <bpel:sources>
+            <bpel:source linkName="ship-to-invoice"/>
+          </bpel:sources>
+        </bpel:invoke>
+        <bpel:receive operation="sendSchedule" partnerLink="shipping" portType="lns:shippingCallbackPT" variable="shippingSchedule">
+          <bpel:sources>
+            <bpel:source linkName="ship-to-scheduling"/>
+          </bpel:sources>
+        </bpel:receive>
+      </bpel:sequence>
+      <bpel:sequence>
+        <bpel:invoke inputVariable="PO" operation="initiatePriceCalculation" partnerLink="invoicing" portType="lns:computePricePT"/>
+        <bpel:invoke inputVariable="shippingInfo" operation="sendShippingPrice" partnerLink="invoicing" portType="lns:computePricePT">
+          <bpel:targets>
+            <bpel:target linkName="ship-to-invoice"/>
+          </bpel:targets>
+        </bpel:invoke>
+        <bpel:receive operation="sendInvoice" partnerLink="invoicing" portType="lns:invoiceCallbackPT" variable="Invoice"/>
+      </bpel:sequence>
+      <bpel:sequence>
+        <bpel:invoke inputVariable="PO" operation="requestProductionScheduling" partnerLink="scheduling" portType="lns:schedulingPT"/>
+        <bpel:invoke inputVariable="shippingSchedule" operation="sendShippingSchedule" partnerLink="scheduling" portType="lns:schedulingPT">
+          <bpel:targets>
+            <bpel:target linkName="ship-to-scheduling"/>
+          </bpel:targets>
+        </bpel:invoke>
+      </bpel:sequence>
+    </bpel:flow>
+    <bpel:reply operation="sendPurchaseOrder" partnerLink="purchasing" portType="lns:purchaseOrderPT" variable="Invoice"/>
+  </bpel:sequence>
+</bpel:process>
diff --git a/examples/projects/org.eclipse.bpel.examples.orderprocessing/bpelContent/OASISSampleProcess.bpelex b/examples/projects/org.eclipse.bpel.examples.orderprocessing/bpelContent/OASISSampleProcess.bpelex
new file mode 100644
index 0000000..6abbd35
--- /dev/null
+++ b/examples/projects/org.eclipse.bpel.examples.orderprocessing/bpelContent/OASISSampleProcess.bpelex
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<extensionmodel:ExtensionMap xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:extensionmodel="http:///extensionmodel.ecore" xmlns:org.eclipse.bpel.ui.uiextensionmodel="http:///org/eclipse/bpel/ui/uiextensionmodel.ecore" namespace="http://org.eclipse.bpel.ui/">
+  <extensions>
+    <extendedObject href="OASISSampleProcess.bpel#/"/>
+    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ProcessExtension" modificationStamp="1334944302410"/>
+  </extensions>
+</extensionmodel:ExtensionMap>
diff --git a/examples/projects/org.eclipse.bpel.examples.orderprocessing/OASISSampleProcess.wsdl b/examples/projects/org.eclipse.bpel.examples.orderprocessing/bpelContent/OASISSampleProcess.wsdl
similarity index 100%
rename from examples/projects/org.eclipse.bpel.examples.orderprocessing/OASISSampleProcess.wsdl
rename to examples/projects/org.eclipse.bpel.examples.orderprocessing/bpelContent/OASISSampleProcess.wsdl
diff --git a/examples/projects/org.eclipse.bpel.examples.orderprocessing/purchase.xsd b/examples/projects/org.eclipse.bpel.examples.orderprocessing/bpelContent/purchase.xsd
similarity index 100%
rename from examples/projects/org.eclipse.bpel.examples.orderprocessing/purchase.xsd
rename to examples/projects/org.eclipse.bpel.examples.orderprocessing/bpelContent/purchase.xsd
diff --git a/examples/projects/org.eclipse.bpel.examples.simple/.project b/examples/projects/org.eclipse.bpel.examples.simple/.project
index 4b5b58d..3b7b733 100644
--- a/examples/projects/org.eclipse.bpel.examples.simple/.project
+++ b/examples/projects/org.eclipse.bpel.examples.simple/.project
@@ -5,7 +5,29 @@
 	<projects>
 	</projects>
 	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.wst.common.project.facet.core.builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.wst.validation.validationbuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.bpel.validator.builder</name>
+			<arguments>
+				<dictionary>
+					<key>debug</key>
+					<value>false</value>
+				</dictionary>
+			</arguments>
+		</buildCommand>
 	</buildSpec>
 	<natures>
+		<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
+		<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
+		<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
 	</natures>
 </projectDescription>
diff --git a/examples/projects/org.eclipse.bpel.examples.simple/SampleProcess.bpel b/examples/projects/org.eclipse.bpel.examples.simple/SampleProcess.bpel
deleted file mode 100644
index fa47dc8..0000000
--- a/examples/projects/org.eclipse.bpel.examples.simple/SampleProcess.bpel
+++ /dev/null
@@ -1,26 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<bpws:process xmlns:bpws="http://schemas.xmlsoap.org/ws/2004/03/business-process/" xmlns:ns="http://SampleProject/SampleProcessArtifacts" xmlns:ns0="http://SampleProject/SampleProcessInterface" expressionLanguage="http://www.w3.org/TR/1999/REC-xpath-19991116" name="SampleProcess" suppressJoinFailure="yes" targetNamespace="http://SampleProject">
-  <bpws:import importType="http://schemas.xmlsoap.org/wsdl/" location="SampleProcessArtifacts.wsdl" namespace="http://SampleProject/SampleProcessArtifacts"/>
-  <bpws:import importType="http://schemas.xmlsoap.org/wsdl/" location="SampleProcess.wsdl" namespace="http://SampleProject/SampleProcessInterface"/>
-  <bpws:partnerLinks>
-    <bpws:partnerLink myRole="ProcessRole" name="Client" partnerLinkType="ns:SampleProcessPartnerLinkType"/>
-  </bpws:partnerLinks>
-  <bpws:variables>
-    <bpws:variable messageType="ns0:operation1Request" name="Input"/>
-    <bpws:variable messageType="ns0:operation1Response" name="Output"/>
-  </bpws:variables>
-  <bpws:sequence name="Sequence">
-    <bpws:receive createInstance="yes" name="Receive" operation="operation1" partnerLink="Client" portType="ns0:SampleProcess" variable="Input"/>
-    <bpws:assign name="Assign">
-      <bpws:copy>
-        <bpws:from part="operation1Parameters" variable="Input">
-          <bpws:query><![CDATA[/input1]]></bpws:query>
-        </bpws:from>
-        <bpws:to part="operation1Result" variable="Output">
-          <bpws:query><![CDATA[/output1]]></bpws:query>
-        </bpws:to>
-      </bpws:copy>
-    </bpws:assign>
-    <bpws:reply name="Reply" operation="operation1" partnerLink="Client" portType="ns0:SampleProcess" variable="Output"/>
-  </bpws:sequence>
-</bpws:process>
diff --git a/examples/projects/org.eclipse.bpel.examples.simple/bpelContent/SampleProcess.bpel b/examples/projects/org.eclipse.bpel.examples.simple/bpelContent/SampleProcess.bpel
new file mode 100644
index 0000000..cf2e8aa
--- /dev/null
+++ b/examples/projects/org.eclipse.bpel.examples.simple/bpelContent/SampleProcess.bpel
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<bpel:process xmlns:ns="http://SampleProject/SampleProcessArtifacts" xmlns:ns0="http://SampleProject/SampleProcessInterface" expressionLanguage="http://www.w3.org/TR/1999/REC-xpath-19991116" name="SampleProcess" suppressJoinFailure="yes" targetNamespace="http://SampleProject" xmlns:bpel="http://docs.oasis-open.org/wsbpel/2.0/process/executable">
+  <bpel:import importType="http://schemas.xmlsoap.org/wsdl/" location="SampleProcessArtifacts.wsdl" namespace="http://SampleProject/SampleProcessArtifacts"/>
+  <bpel:import importType="http://schemas.xmlsoap.org/wsdl/" location="SampleProcess.wsdl" namespace="http://SampleProject/SampleProcessInterface"/>
+  <bpel:partnerLinks>
+    <bpel:partnerLink myRole="ProcessRole" name="Client" partnerLinkType="ns:SampleProcessPartnerLinkType"/>
+  </bpel:partnerLinks>
+  <bpel:variables>
+    <bpel:variable messageType="ns0:operation1Request" name="Input"/>
+    <bpel:variable messageType="ns0:operation1Response" name="Output"/>
+  </bpel:variables>
+  <bpel:sequence name="Sequence">
+    <bpel:receive createInstance="yes" name="Receive" operation="operation1" partnerLink="Client" portType="ns0:SampleProcess" variable="Input"/>
+    <bpel:assign name="Assign">
+      <bpel:copy>
+        <bpel:from part="operation1Parameters" variable="Input">
+          <bpel:query><![CDATA[/input1]]></bpel:query>
+        </bpel:from>
+        <bpel:to part="operation1Result" variable="Output">
+          <bpel:query><![CDATA[/output1]]></bpel:query>
+        </bpel:to>
+      </bpel:copy>
+    </bpel:assign>
+    <bpel:reply name="Reply" operation="operation1" partnerLink="Client" portType="ns0:SampleProcess" variable="Output"/>
+  </bpel:sequence>
+</bpel:process>
diff --git a/examples/projects/org.eclipse.bpel.examples.simple/bpelContent/SampleProcess.bpelex b/examples/projects/org.eclipse.bpel.examples.simple/bpelContent/SampleProcess.bpelex
new file mode 100644
index 0000000..dc39c41
--- /dev/null
+++ b/examples/projects/org.eclipse.bpel.examples.simple/bpelContent/SampleProcess.bpelex
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="ASCII"?>
+<extensionmodel:ExtensionMap xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:extensionmodel="http:///extensionmodel.ecore" xmlns:org.eclipse.bpel.ui.uiextensionmodel="http:///org/eclipse/bpel/ui/uiextensionmodel.ecore" namespace="http://org.eclipse.bpel.ui/">
+  <extensions>
+    <extendedObject href="SampleProcess.bpel#/"/>
+    <extensionObject xsi:type="org.eclipse.bpel.ui.uiextensionmodel:ProcessExtension" modificationStamp="1334944524729"/>
+  </extensions>
+</extensionmodel:ExtensionMap>
diff --git a/examples/projects/org.eclipse.bpel.examples.simple/SampleProcess.wsdl b/examples/projects/org.eclipse.bpel.examples.simple/bpelContent/SampleProcess.wsdl
similarity index 100%
rename from examples/projects/org.eclipse.bpel.examples.simple/SampleProcess.wsdl
rename to examples/projects/org.eclipse.bpel.examples.simple/bpelContent/SampleProcess.wsdl
diff --git a/examples/projects/org.eclipse.bpel.examples.simple/SampleProcessArtifacts.wsdl b/examples/projects/org.eclipse.bpel.examples.simple/bpelContent/SampleProcessArtifacts.wsdl
similarity index 100%
rename from examples/projects/org.eclipse.bpel.examples.simple/SampleProcessArtifacts.wsdl
rename to examples/projects/org.eclipse.bpel.examples.simple/bpelContent/SampleProcessArtifacts.wsdl
diff --git a/features/org.eclipse.bpel.apache.ode.runtime.feature/feature.xml b/features/org.eclipse.bpel.apache.ode.runtime.feature/feature.xml
index ce714f0..1186cc0 100644
--- a/features/org.eclipse.bpel.apache.ode.runtime.feature/feature.xml
+++ b/features/org.eclipse.bpel.apache.ode.runtime.feature/feature.xml
@@ -2,7 +2,7 @@
 <feature

       id="org.eclipse.bpel.apache.ode.runtime.feature"

       label="%name"

-      version="0.8.0.qualifier"

+      version="1.0.0.qualifier"

       provider-name="%providerName">

 

    <description url="http://www.eclipse.org/bpel/">

@@ -14,201 +14,201 @@
    </copyright>

 

    <license url="%licenseURL">

-      Eclipse Public License - v 1.0
-THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS
-ECLIPSE PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE, REPRODUCTION OR
-DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT&apos;S ACCEPTANCE
-OF THIS AGREEMENT.
-1. DEFINITIONS
-&quot;Contribution&quot; means:
-a) in the case of the initial Contributor, the initial code and
-documentation distributed under this Agreement, and
-b) in the case of each subsequent Contributor:
-i) changes to the Program, and
-ii) additions to the Program;
-where such changes and/or additions to the Program originate
-from and are distributed by that particular Contributor. A Contribution
-&apos;originates&apos; from a Contributor if it was added to the Program
-by such Contributor itself or anyone acting on such Contributor&apos;s
-behalf. Contributions do not include additions to the Program
-which: (i) are separate modules of software distributed in conjunction
-with the Program under their own license agreement, and (ii)
-are not derivative works of the Program.
-&quot;Contributor&quot; means any person or entity that distributes the
-Program.
-&quot;Licensed Patents &quot; mean patent claims licensable by a Contributor
-which are necessarily infringed by the use or sale of its Contribution
-alone or when combined with the Program.
-&quot;Program&quot; means the Contributions distributed in accordance with
-this Agreement.
-&quot;Recipient&quot; means anyone who receives the Program under this
-Agreement, including all Contributors.
-2. GRANT OF RIGHTS
-a) Subject to the terms of this Agreement, each Contributor hereby
-grants Recipient a non-exclusive, worldwide, royalty-free copyright
-license to reproduce, prepare derivative works of, publicly display,
-publicly perform, distribute and sublicense the Contribution
-of such Contributor, if any, and such derivative works, in source
-code and object code form.
-b) Subject to the terms of this Agreement, each Contributor hereby
-grants Recipient a non-exclusive, worldwide, royalty-free patent
-license under Licensed Patents to make, use, sell, offer to sell,
-import and otherwise transfer the Contribution of such Contributor,
-if any, in source code and object code form. This patent license
-shall apply to the combination of the Contribution and the Program
-if, at the time the Contribution is added by the Contributor,
-such addition of the Contribution causes such combination to
-be covered by the Licensed Patents. The patent license shall
-not apply to any other combinations which include the Contribution.
-No hardware per se is licensed hereunder.
-c) Recipient understands that although each Contributor grants
-the licenses to its Contributions set forth herein, no assurances
-are provided by any Contributor that the Program does not infringe
-the patent or other intellectual property rights of any other
-entity. Each Contributor disclaims any liability to Recipient
-for claims brought by any other entity based on infringement
-of intellectual property rights or otherwise. As a condition
-to exercising the rights and licenses granted hereunder, each
-Recipient hereby assumes sole responsibility to secure any other
-intellectual property rights needed, if any. For example, if
-a third party patent license is required to allow Recipient to
-distribute the Program, it is Recipient&apos;s responsibility to acquire
-that license before distributing the Program.
-d) Each Contributor represents that to its knowledge it has sufficient
-copyright rights in its Contribution, if any, to grant the copyright
-license set forth in this Agreement.
-3. REQUIREMENTS
-A Contributor may choose to distribute the Program in object
-code form under its own license agreement, provided that:
-a) it complies with the terms and conditions of this Agreement;
-and
-b) its license agreement:
-i) effectively disclaims on behalf of all Contributors all warranties
-and conditions, express and implied, including warranties or
-conditions of title and non-infringement, and implied warranties
-or conditions of merchantability and fitness for a particular
-purpose;
-ii) effectively excludes on behalf of all Contributors all liability
-for damages, including direct, indirect, special, incidental
-and consequential damages, such as lost profits;
-iii) states that any provisions which differ from this Agreement
-are offered by that Contributor alone and not by any other party;
-and
-iv) states that source code for the Program is available from
-such Contributor, and informs licensees how to obtain it in a
-reasonable manner on or through a medium customarily used for
-software exchange.
-When the Program is made available in source code form:
-a) it must be made available under this Agreement; and
-b) a copy of this Agreement must be included with each copy of
-the Program.
-Contributors may not remove or alter any copyright notices contained
-within the Program.
-Each Contributor must identify itself as the originator of its
-Contribution, if any, in a manner that reasonably allows subsequent
-Recipients to identify the originator of the Contribution.
-4. COMMERCIAL DISTRIBUTION
-Commercial distributors of software may accept certain responsibilities
-with respect to end users, business partners and the like. While
-this license is intended to facilitate the commercial use of
-the Program, the Contributor who includes the Program in a commercial
-product offering should do so in a manner which does not create
-potential liability for other Contributors. Therefore, if a Contributor
-includes the Program in a commercial product offering, such Contributor
-(&quot;Commercial Contributor&quot;) hereby agrees to defend and indemnify
-every other Contributor (&quot;Indemnified Contributor&quot;) against any
-losses, damages and costs (collectively &quot;Losses&quot;) arising from
-claims, lawsuits and other legal actions brought by a third party
-against the Indemnified Contributor to the extent caused by the
-acts or omissions of such Commercial Contributor in connection
-with its distribution of the Program in a commercial product
-offering. The obligations in this section do not apply to any
-claims or Losses relating to any actual or alleged intellectual
-property infringement. In order to qualify, an Indemnified Contributor
-must: a) promptly notify the Commercial Contributor in writing
-of such claim, and b) allow the Commercial Contributor to control,
-and cooperate with the Commercial Contributor in, the defense
-and any related settlement negotiations. The Indemnified Contributor
-may participate in any such claim at its own expense.
-For example, a Contributor might include the Program in a commercial
-product offering, Product X. That Contributor is then a Commercial
-Contributor. If that Commercial Contributor then makes performance
-claims, or offers warranties related to Product X, those performance
-claims and warranties are such Commercial Contributor&apos;s responsibility
-alone. Under this section, the Commercial Contributor would have
-to defend claims against the other Contributors related to those
-performance claims and warranties, and if a court requires any
-other Contributor to pay any damages as a result, the Commercial
-Contributor must pay those damages.
-5. NO WARRANTY
-EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM
-IS PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS
-OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
-ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
-OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
-responsible for determining the appropriateness of using and
-distributing the Program and assumes all risks associated with
-its exercise of rights under this Agreement , including but not
-limited to the risks and costs of program errors, compliance
-with applicable laws, damage to or loss of data, programs or
-equipment, and unavailability or interruption of operations.
-6. DISCLAIMER OF LIABILITY
-EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
-NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT,
-INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-(INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND
-ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE
-OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY
-OF SUCH DAMAGES.
-7. GENERAL
-If any provision of this Agreement is invalid or unenforceable
-under applicable law, it shall not affect the validity or enforceability
-of the remainder of the terms of this Agreement, and without
-further action by the parties hereto, such provision shall be
-reformed to the minimum extent necessary to make such provision
-valid and enforceable.
-If Recipient institutes patent litigation against any entity
-(including a cross-claim or counterclaim in a lawsuit) alleging
-that the Program itself (excluding combinations of the Program
-with other software or hardware) infringes such Recipient&apos;s patent(s),
-then such Recipient&apos;s rights granted under Section 2(b) shall
-terminate as of the date such litigation is filed.
-All Recipient&apos;s rights under this Agreement shall terminate if
-it fails to comply with any of the material terms or conditions
-of this Agreement and does not cure such failure in a reasonable
-period of time after becoming aware of such noncompliance. If
-all Recipient&apos;s rights under this Agreement terminate, Recipient
-agrees to cease use and distribution of the Program as soon as
-reasonably practicable. However, Recipient&apos;s obligations under
-this Agreement and any licenses granted by Recipient relating
-to the Program shall continue and survive.
-Everyone is permitted to copy and distribute copies of this Agreement,
-but in order to avoid inconsistency the Agreement is copyrighted
-and may only be modified in the following manner. The Agreement
-Steward reserves the right to publish new versions (including
-revisions) of this Agreement from time to time. No one other
-than the Agreement Steward has the right to modify this Agreement.
-The Eclipse Foundation is the initial Agreement Steward. The
-Eclipse Foundation may assign the responsibility to serve as
-the Agreement Steward to a suitable separate entity. Each new
-version of the Agreement will be given a distinguishing version
-number. The Program (including Contributions) may always be distributed
-subject to the version of the Agreement under which it was received.
-In addition, after a new version of the Agreement is published,
-Contributor may elect to distribute the Program (including its
-Contributions) under the new version. Except as expressly stated
-in Sections 2(a) and 2(b) above, Recipient receives no rights
-or licenses to the intellectual property of any Contributor under
-this Agreement, whether expressly, by implication, estoppel or
-otherwise. All rights in the Program not expressly granted under
-this Agreement are reserved.
-This Agreement is governed by the laws of the State of New York
-and the intellectual property laws of the United States of America.
-No party to this Agreement will bring a legal action under this
-Agreement more than one year after the cause of action arose.
-Each party waives its rights to a jury trial in any resulting
+      Eclipse Public License - v 1.0

+THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS

+ECLIPSE PUBLIC LICENSE (&quot;AGREEMENT&quot;). ANY USE, REPRODUCTION OR

+DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT&apos;S ACCEPTANCE

+OF THIS AGREEMENT.

+1. DEFINITIONS

+&quot;Contribution&quot; means:

+a) in the case of the initial Contributor, the initial code and

+documentation distributed under this Agreement, and

+b) in the case of each subsequent Contributor:

+i) changes to the Program, and

+ii) additions to the Program;

+where such changes and/or additions to the Program originate

+from and are distributed by that particular Contributor. A Contribution

+&apos;originates&apos; from a Contributor if it was added to the Program

+by such Contributor itself or anyone acting on such Contributor&apos;s

+behalf. Contributions do not include additions to the Program

+which: (i) are separate modules of software distributed in conjunction

+with the Program under their own license agreement, and (ii)

+are not derivative works of the Program.

+&quot;Contributor&quot; means any person or entity that distributes the

+Program.

+&quot;Licensed Patents &quot; mean patent claims licensable by a Contributor

+which are necessarily infringed by the use or sale of its Contribution

+alone or when combined with the Program.

+&quot;Program&quot; means the Contributions distributed in accordance with

+this Agreement.

+&quot;Recipient&quot; means anyone who receives the Program under this

+Agreement, including all Contributors.

+2. GRANT OF RIGHTS

+a) Subject to the terms of this Agreement, each Contributor hereby

+grants Recipient a non-exclusive, worldwide, royalty-free copyright

+license to reproduce, prepare derivative works of, publicly display,

+publicly perform, distribute and sublicense the Contribution

+of such Contributor, if any, and such derivative works, in source

+code and object code form.

+b) Subject to the terms of this Agreement, each Contributor hereby

+grants Recipient a non-exclusive, worldwide, royalty-free patent

+license under Licensed Patents to make, use, sell, offer to sell,

+import and otherwise transfer the Contribution of such Contributor,

+if any, in source code and object code form. This patent license

+shall apply to the combination of the Contribution and the Program

+if, at the time the Contribution is added by the Contributor,

+such addition of the Contribution causes such combination to

+be covered by the Licensed Patents. The patent license shall

+not apply to any other combinations which include the Contribution.

+No hardware per se is licensed hereunder.

+c) Recipient understands that although each Contributor grants

+the licenses to its Contributions set forth herein, no assurances

+are provided by any Contributor that the Program does not infringe

+the patent or other intellectual property rights of any other

+entity. Each Contributor disclaims any liability to Recipient

+for claims brought by any other entity based on infringement

+of intellectual property rights or otherwise. As a condition

+to exercising the rights and licenses granted hereunder, each

+Recipient hereby assumes sole responsibility to secure any other

+intellectual property rights needed, if any. For example, if

+a third party patent license is required to allow Recipient to

+distribute the Program, it is Recipient&apos;s responsibility to acquire

+that license before distributing the Program.

+d) Each Contributor represents that to its knowledge it has sufficient

+copyright rights in its Contribution, if any, to grant the copyright

+license set forth in this Agreement.

+3. REQUIREMENTS

+A Contributor may choose to distribute the Program in object

+code form under its own license agreement, provided that:

+a) it complies with the terms and conditions of this Agreement;

+and

+b) its license agreement:

+i) effectively disclaims on behalf of all Contributors all warranties

+and conditions, express and implied, including warranties or

+conditions of title and non-infringement, and implied warranties

+or conditions of merchantability and fitness for a particular

+purpose;

+ii) effectively excludes on behalf of all Contributors all liability

+for damages, including direct, indirect, special, incidental

+and consequential damages, such as lost profits;

+iii) states that any provisions which differ from this Agreement

+are offered by that Contributor alone and not by any other party;

+and

+iv) states that source code for the Program is available from

+such Contributor, and informs licensees how to obtain it in a

+reasonable manner on or through a medium customarily used for

+software exchange.

+When the Program is made available in source code form:

+a) it must be made available under this Agreement; and

+b) a copy of this Agreement must be included with each copy of

+the Program.

+Contributors may not remove or alter any copyright notices contained

+within the Program.

+Each Contributor must identify itself as the originator of its

+Contribution, if any, in a manner that reasonably allows subsequent

+Recipients to identify the originator of the Contribution.

+4. COMMERCIAL DISTRIBUTION

+Commercial distributors of software may accept certain responsibilities

+with respect to end users, business partners and the like. While

+this license is intended to facilitate the commercial use of

+the Program, the Contributor who includes the Program in a commercial

+product offering should do so in a manner which does not create

+potential liability for other Contributors. Therefore, if a Contributor

+includes the Program in a commercial product offering, such Contributor

+(&quot;Commercial Contributor&quot;) hereby agrees to defend and indemnify

+every other Contributor (&quot;Indemnified Contributor&quot;) against any

+losses, damages and costs (collectively &quot;Losses&quot;) arising from

+claims, lawsuits and other legal actions brought by a third party

+against the Indemnified Contributor to the extent caused by the

+acts or omissions of such Commercial Contributor in connection

+with its distribution of the Program in a commercial product

+offering. The obligations in this section do not apply to any

+claims or Losses relating to any actual or alleged intellectual

+property infringement. In order to qualify, an Indemnified Contributor

+must: a) promptly notify the Commercial Contributor in writing

+of such claim, and b) allow the Commercial Contributor to control,

+and cooperate with the Commercial Contributor in, the defense

+and any related settlement negotiations. The Indemnified Contributor

+may participate in any such claim at its own expense.

+For example, a Contributor might include the Program in a commercial

+product offering, Product X. That Contributor is then a Commercial

+Contributor. If that Commercial Contributor then makes performance

+claims, or offers warranties related to Product X, those performance

+claims and warranties are such Commercial Contributor&apos;s responsibility

+alone. Under this section, the Commercial Contributor would have

+to defend claims against the other Contributors related to those

+performance claims and warranties, and if a court requires any

+other Contributor to pay any damages as a result, the Commercial

+Contributor must pay those damages.

+5. NO WARRANTY

+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM

+IS PROVIDED ON AN &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS

+OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,

+ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY

+OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely

+responsible for determining the appropriateness of using and

+distributing the Program and assumes all risks associated with

+its exercise of rights under this Agreement , including but not

+limited to the risks and costs of program errors, compliance

+with applicable laws, damage to or loss of data, programs or

+equipment, and unavailability or interruption of operations.

+6. DISCLAIMER OF LIABILITY

+EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT

+NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT,

+INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES

+(INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND

+ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,

+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY

+OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE

+OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY

+OF SUCH DAMAGES.

+7. GENERAL

+If any provision of this Agreement is invalid or unenforceable

+under applicable law, it shall not affect the validity or enforceability

+of the remainder of the terms of this Agreement, and without

+further action by the parties hereto, such provision shall be

+reformed to the minimum extent necessary to make such provision

+valid and enforceable.

+If Recipient institutes patent litigation against any entity

+(including a cross-claim or counterclaim in a lawsuit) alleging

+that the Program itself (excluding combinations of the Program

+with other software or hardware) infringes such Recipient&apos;s patent(s),

+then such Recipient&apos;s rights granted under Section 2(b) shall

+terminate as of the date such litigation is filed.

+All Recipient&apos;s rights under this Agreement shall terminate if

+it fails to comply with any of the material terms or conditions

+of this Agreement and does not cure such failure in a reasonable

+period of time after becoming aware of such noncompliance. If

+all Recipient&apos;s rights under this Agreement terminate, Recipient

+agrees to cease use and distribution of the Program as soon as

+reasonably practicable. However, Recipient&apos;s obligations under

+this Agreement and any licenses granted by Recipient relating

+to the Program shall continue and survive.

+Everyone is permitted to copy and distribute copies of this Agreement,

+but in order to avoid inconsistency the Agreement is copyrighted

+and may only be modified in the following manner. The Agreement

+Steward reserves the right to publish new versions (including

+revisions) of this Agreement from time to time. No one other

+than the Agreement Steward has the right to modify this Agreement.

+The Eclipse Foundation is the initial Agreement Steward. The

+Eclipse Foundation may assign the responsibility to serve as

+the Agreement Steward to a suitable separate entity. Each new

+version of the Agreement will be given a distinguishing version

+number. The Program (including Contributions) may always be distributed

+subject to the version of the Agreement under which it was received.

+In addition, after a new version of the Agreement is published,

+Contributor may elect to distribute the Program (including its

+Contributions) under the new version. Except as expressly stated

+in Sections 2(a) and 2(b) above, Recipient receives no rights

+or licenses to the intellectual property of any Contributor under

+this Agreement, whether expressly, by implication, estoppel or

+otherwise. All rights in the Program not expressly granted under

+this Agreement are reserved.

+This Agreement is governed by the laws of the State of New York

+and the intellectual property laws of the United States of America.

+No party to this Agreement will bring a legal action under this

+Agreement more than one year after the cause of action arose.

+Each party waives its rights to a jury trial in any resulting

 litigation.

    </license>

 

@@ -223,13 +223,13 @@
       <import plugin="org.eclipse.emf.ecore" version="2.4.0" match="compatible"/>

       <import plugin="org.eclipse.jst.server.generic.core" version="1.0.305" match="compatible"/>

       <import plugin="org.eclipse.wst.wsdl" version="1.1.200" match="compatible"/>

-      <import plugin="org.eclipse.bpel.model" version="0.8.0" match="greaterOrEqual"/>

+      <import plugin="org.eclipse.bpel.model" version="1.0.0" match="greaterOrEqual"/>

       <import plugin="org.eclipse.jem.util" version="2.0.100" match="compatible"/>

       <import plugin="org.eclipse.core.runtime" version="3.4.0" match="compatible"/>

-      <import plugin="org.eclipse.bpel.runtimes" version="0.8.0" match="greaterOrEqual"/>

+      <import plugin="org.eclipse.bpel.runtimes" version="1.0.0" match="greaterOrEqual"/>

       <import plugin="org.eclipse.jst.server.generic.ui" version="1.0.305" match="compatible"/>

       <import plugin="org.eclipse.emf.ecore.xmi" version="2.4.0" match="compatible"/>

-      <import plugin="org.eclipse.bpel.ui" version="0.8.0" match="greaterOrEqual"/>

+      <import plugin="org.eclipse.bpel.ui" version="1.0.0" match="greaterOrEqual"/>

       <import plugin="org.apache.xerces" version="2.9.0" match="compatible"/>

       <import plugin="org.eclipse.xsd" version="2.4.0" match="compatible"/>

       <import plugin="org.eclipse.jst.server.ui" version="1.0.303" match="compatible"/>

diff --git a/features/org.eclipse.bpel.apache.ode.runtime.feature/pom.xml b/features/org.eclipse.bpel.apache.ode.runtime.feature/pom.xml
index 680c726..e4b5ab2 100644
--- a/features/org.eclipse.bpel.apache.ode.runtime.feature/pom.xml
+++ b/features/org.eclipse.bpel.apache.ode.runtime.feature/pom.xml
@@ -9,6 +9,6 @@
 	</parent>
 	<groupId>org.eclipse.bpel.features</groupId>
 	<artifactId>org.eclipse.bpel.apache.ode.runtime.feature</artifactId> 
-	<version>0.8.0-SNAPSHOT</version>
+	<version>1.0.0-SNAPSHOT</version>
 	<packaging>eclipse-feature</packaging>
 </project>
diff --git a/features/org.eclipse.bpel.common.feature/feature.xml b/features/org.eclipse.bpel.common.feature/feature.xml
index c327c5d..571022b 100644
--- a/features/org.eclipse.bpel.common.feature/feature.xml
+++ b/features/org.eclipse.bpel.common.feature/feature.xml
@@ -2,7 +2,7 @@
 <feature

       id="org.eclipse.bpel.common.feature"

       label="%name"

-      version="0.8.0.qualifier"

+      version="1.0.0.qualifier"

       provider-name="%providerName">

 

    <description url="http://www.eclipse.org/bpel/">

diff --git a/features/org.eclipse.bpel.common.feature/pom.xml b/features/org.eclipse.bpel.common.feature/pom.xml
index a1eca67..04d8c14 100644
--- a/features/org.eclipse.bpel.common.feature/pom.xml
+++ b/features/org.eclipse.bpel.common.feature/pom.xml
@@ -10,6 +10,6 @@
 	

 	<groupId>org.eclipse.bpel.features</groupId>

 	<artifactId>org.eclipse.bpel.common.feature</artifactId> 

-	<version>0.8.0-SNAPSHOT</version>

+	<version>1.0.0-SNAPSHOT</version>

 	<packaging>eclipse-feature</packaging>

 </project>

diff --git a/features/org.eclipse.bpel.feature/feature.xml b/features/org.eclipse.bpel.feature/feature.xml
index 09e9a45..db38d17 100644
--- a/features/org.eclipse.bpel.feature/feature.xml
+++ b/features/org.eclipse.bpel.feature/feature.xml
@@ -2,7 +2,7 @@
 <feature

       id="org.eclipse.bpel.feature"

       label="%name"

-      version="0.8.0.qualifier"

+      version="1.0.0.qualifier"

       provider-name="%providerName">

 

    <description url="http://www.eclipse.org/bpel/">

@@ -25,7 +25,7 @@
       <import plugin="org.eclipse.emf.ecore" version="2.4.0" match="compatible"/>

       <import plugin="org.eclipse.emf.ecore.xmi" version="2.4.0" match="compatible"/>

       <import plugin="javax.wsdl" version="1.5.0" match="equivalent"/>

-      <import plugin="org.eclipse.bpel.model" version="0.8.0" match="greaterOrEqual"/>

+      <import plugin="org.eclipse.bpel.model" version="1.0.0" match="greaterOrEqual"/>

       <import plugin="org.eclipse.wst.wsdl" version="1.1.200" match="compatible"/>

       <import plugin="org.eclipse.xsd" version="2.4.0" match="compatible"/>

       <import plugin="org.eclipse.core.runtime" version="3.4.0" match="compatible"/>

@@ -35,11 +35,11 @@
       <import plugin="org.eclipse.ui.editors" version="3.4.0" match="compatible"/>

       <import plugin="org.eclipse.ui.ide" version="3.4.0" match="compatible"/>

       <import plugin="org.eclipse.ui.forms" version="3.3.100" match="compatible"/>

-      <import plugin="org.eclipse.bpel.apache.ode.deploy.model" version="0.8.0" match="greaterOrEqual"/>

+      <import plugin="org.eclipse.bpel.apache.ode.deploy.model" version="1.0.0" match="greaterOrEqual"/>

       <import plugin="org.eclipse.core.databinding" version="1.1.0" match="compatible"/>

       <import plugin="org.eclipse.jface.databinding" version="1.2.0" match="compatible"/>

       <import plugin="org.eclipse.emf.edit.ui" version="2.4.0" match="compatible"/>

-      <import plugin="org.eclipse.bpel.ui" version="0.8.0" match="greaterOrEqual"/>

+      <import plugin="org.eclipse.bpel.ui" version="1.0.0" match="greaterOrEqual"/>

       <import plugin="org.eclipse.wst.common.modulecore" version="1.1.200" match="compatible"/>

       <import plugin="org.eclipse.wst.common.emfworkbench.integration"/>

       <import plugin="org.eclipse.jem.util" version="2.0.100" match="compatible"/>

@@ -47,7 +47,7 @@
       <import plugin="org.eclipse.gef" version="3.4.0" match="compatible"/>

       <import plugin="org.eclipse.emf.ecore.change" version="2.4.0" match="compatible"/>

       <import plugin="org.apache.xerces" version="2.9.0" match="compatible"/>

-      <import plugin="org.eclipse.bpel.common.model" version="0.8.0" match="greaterOrEqual"/>

+      <import plugin="org.eclipse.bpel.common.model" version="1.0.0" match="greaterOrEqual"/>

       <import plugin="org.eclipse.wst.xml.core" version="1.1.300" match="compatible"/>

       <import plugin="org.eclipse.wst.xml.ui" version="1.0.400" match="compatible"/>

       <import plugin="org.eclipse.wst.xsd.ui" version="1.2.101" match="compatible"/>

@@ -64,15 +64,15 @@
       <import plugin="org.eclipse.jem.workbench"/>

       <import plugin="org.eclipse.ui.views.properties.tabbed" version="3.4.0" match="compatible"/>

       <import plugin="org.eclipse.ui.workbench.texteditor" version="3.4.0" match="compatible"/>

-      <import plugin="org.eclipse.bpel.common.ui" version="0.8.0" match="greaterOrEqual"/>

-      <import plugin="org.eclipse.bpel.wsil.model" version="0.8.0" match="greaterOrEqual"/>

+      <import plugin="org.eclipse.bpel.common.ui" version="1.0.0" match="greaterOrEqual"/>

+      <import plugin="org.eclipse.bpel.wsil.model" version="1.0.0" match="greaterOrEqual"/>

       <import plugin="org.eclipse.wst.sse.ui" version="1.1.0" match="compatible"/>

       <import plugin="org.eclipse.wst.sse.core" version="1.1.300" match="compatible"/>

       <import plugin="org.eclipse.wst.wsdl.ui" version="1.2.100" match="compatible"/>

       <import plugin="org.eclipse.ui.console"/>

       <import plugin="org.eclipse.wst.validation" version="1.2.0" match="compatible"/>

       <import plugin="org.eclipse.wst.wsdl.validation" version="1.1.301" match="compatible"/>

-      <import plugin="org.eclipse.bpel.xpath10" version="0.8.0" match="greaterOrEqual"/>

+      <import plugin="org.eclipse.bpel.xpath10" version="1.0.0" match="greaterOrEqual"/>

       <import feature="org.eclipse.jst.common.fproj.enablement.jdt"/>

       <import feature="org.eclipse.wst.common.fproj"/>

       <import feature="org.eclipse.wst.jsdt.feature"/>

diff --git a/features/org.eclipse.bpel.feature/pom.xml b/features/org.eclipse.bpel.feature/pom.xml
index 617ab7c..82c7cca 100644
--- a/features/org.eclipse.bpel.feature/pom.xml
+++ b/features/org.eclipse.bpel.feature/pom.xml
@@ -9,6 +9,6 @@
 	</parent>
 	<groupId>org.eclipse.bpel.features</groupId>
 	<artifactId>org.eclipse.bpel.feature</artifactId> 
-	<version>0.8.0-SNAPSHOT</version>
+	<version>1.0.0-SNAPSHOT</version>
 	<packaging>eclipse-feature</packaging>
 </project>
diff --git a/features/org.eclipse.bpel.jboss.riftsaw.runtime.feature/feature.xml b/features/org.eclipse.bpel.jboss.riftsaw.runtime.feature/feature.xml
index 76db23b..0ad57fd 100644
--- a/features/org.eclipse.bpel.jboss.riftsaw.runtime.feature/feature.xml
+++ b/features/org.eclipse.bpel.jboss.riftsaw.runtime.feature/feature.xml
@@ -2,7 +2,7 @@
 <feature

       id="org.eclipse.bpel.jboss.riftsaw.runtime.feature"

       label="%name"

-      version="0.8.0.qualifier"

+      version="1.0.0.qualifier"

       provider-name="%providerName">

 

    <description url="http://www.eclipse.org/bpel/">

@@ -36,13 +36,13 @@
       <import plugin="org.eclipse.jst.server.core" version="1.1.0" match="compatible"/>

       <import plugin="org.eclipse.jem.util" version="2.0.100" match="compatible"/>

       <import plugin="org.eclipse.debug.ui" version="3.4.0" match="compatible"/>

-      <import plugin="org.eclipse.bpel.model" version="0.8.0" match="greaterOrEqual"/>

+      <import plugin="org.eclipse.bpel.model" version="1.0.0" match="greaterOrEqual"/>

       <import plugin="org.eclipse.emf.ecore" version="2.4.0" match="compatible"/>

       <import plugin="javax.wsdl" version="1.5.0" match="equivalent"/>

       <import plugin="org.eclipse.wst.wsdl" version="1.1.200" match="compatible"/>

       <import plugin="org.eclipse.jst.common.frameworks"/>

       <import plugin="org.eclipse.jem.workbench"/>

-      <import plugin="org.eclipse.bpel.runtimes" version="0.8.0" match="greaterOrEqual"/>

+      <import plugin="org.eclipse.bpel.runtimes" version="1.0.0" match="greaterOrEqual"/>

       <import plugin="org.eclipse.bpel.validator"/>

       <import feature="org.eclipse.jst.common.fproj.enablement.jdt"/>

       <import feature="org.eclipse.wst.common.fproj"/>

diff --git a/features/org.eclipse.bpel.jboss.riftsaw.runtime.feature/pom.xml b/features/org.eclipse.bpel.jboss.riftsaw.runtime.feature/pom.xml
index 6afe871..c5059f7 100644
--- a/features/org.eclipse.bpel.jboss.riftsaw.runtime.feature/pom.xml
+++ b/features/org.eclipse.bpel.jboss.riftsaw.runtime.feature/pom.xml
@@ -9,6 +9,6 @@
 	</parent>
 	<groupId>org.eclipse.bpel.features</groupId>
 	<artifactId>org.eclipse.bpel.jboss.riftsaw.runtime.feature</artifactId> 
-	<version>0.8.0-SNAPSHOT</version>
+	<version>1.0.0-SNAPSHOT</version>
 	<packaging>eclipse-feature</packaging>
 </project>
diff --git a/features/org.eclipse.bpel.site/site.xml b/features/org.eclipse.bpel.site/site.xml
index d452538..c6922c4 100644
--- a/features/org.eclipse.bpel.site/site.xml
+++ b/features/org.eclipse.bpel.site/site.xml
@@ -4,10 +4,10 @@
    <description url="http://download.eclipse.org/bpel/update-site/">
       BPEL Designer for Eclipse
    </description>
-   <feature url="features/org.eclipse.bpel.feature_0.8.0.jar" id="org.eclipse.bpel.feature" version="0.8.0">
-      <category name="Eclipse BPEL Designer (Incubation)"/>
+   <feature url="features/org.eclipse.bpel.feature_1.0.0.jar" id="org.eclipse.bpel.feature" version="1.0.0">
+      <category name="Eclipse BPEL Designer"/>
    </feature>
-   <category-def name="Eclipse BPEL Designer (Incubation)" label="Eclipse BPEL Designer (Incubation)">
+   <category-def name="Eclipse BPEL Designer" label="Eclipse BPEL Designer">
       <description>
          BPEL Designer for Eclipse.
       </description>
diff --git a/features/org.eclipse.bpel.source.feature/feature.xml b/features/org.eclipse.bpel.source.feature/feature.xml
index 785ff84..e09dc94 100644
--- a/features/org.eclipse.bpel.source.feature/feature.xml
+++ b/features/org.eclipse.bpel.source.feature/feature.xml
@@ -2,7 +2,7 @@
 <feature

       id="org.eclipse.bpel.source.feature"

       label="%name"

-      version="0.8.0.qualifier"

+      version="1.0.0.qualifier"

       provider-name="%providerName">

 

    <description url="http://www.eclipse.org/bpel/">

diff --git a/features/org.eclipse.bpel.source.feature/pom.xml b/features/org.eclipse.bpel.source.feature/pom.xml
index b07ead8..274be71 100644
--- a/features/org.eclipse.bpel.source.feature/pom.xml
+++ b/features/org.eclipse.bpel.source.feature/pom.xml
@@ -9,6 +9,6 @@
 	</parent>
 	<groupId>org.eclipse.bpel.features</groupId>
 	<artifactId>org.eclipse.bpel.source.feature</artifactId> 
-	<version>0.8.0-SNAPSHOT</version>
+	<version>1.0.0-SNAPSHOT</version>
 	<packaging>eclipse-feature</packaging>
 </project>
diff --git a/plugins/org.eclipse.bpel.apache.ode.deploy.model/META-INF/MANIFEST.MF b/plugins/org.eclipse.bpel.apache.ode.deploy.model/META-INF/MANIFEST.MF
index c6c3e5b..e0571ea 100644
--- a/plugins/org.eclipse.bpel.apache.ode.deploy.model/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.bpel.apache.ode.deploy.model/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2

 Bundle-Name: ODE Deploy Descriptor EMF Model

 Bundle-SymbolicName: org.eclipse.bpel.apache.ode.deploy.model; singleton:=true

-Bundle-Version: 0.8.0.qualifier

+Bundle-Version: 1.0.0.qualifier

 Bundle-ClassPath: .

 Bundle-Vendor: Eclipse.org

 Bundle-Localization: plugin

@@ -12,7 +12,7 @@
  org.eclipse.bpel.apache.ode.deploy.model.dd.util

 Require-Bundle: org.eclipse.emf.ecore.xmi;bundle-version="[2.4.0,3.0.0)";visibility:=reexport,

  javax.wsdl;bundle-version="1.6.2",

- org.eclipse.bpel.model;bundle-version="0.8.0",

+ org.eclipse.bpel.model;bundle-version="1.0.0",

  org.eclipse.wst.wsdl;bundle-version="[1.1.200,2.0.0)",

  org.eclipse.xsd;bundle-version="[2.4.0,3.0.0)"

 Bundle-ActivationPolicy: lazy

diff --git a/plugins/org.eclipse.bpel.apache.ode.deploy.model/pom.xml b/plugins/org.eclipse.bpel.apache.ode.deploy.model/pom.xml
index ba2ba24..2156c31 100644
--- a/plugins/org.eclipse.bpel.apache.ode.deploy.model/pom.xml
+++ b/plugins/org.eclipse.bpel.apache.ode.deploy.model/pom.xml
@@ -9,7 +9,7 @@
 	</parent>
 	<groupId>org.eclipse.bpel.plugins</groupId>
 	<artifactId>org.eclipse.bpel.apache.ode.deploy.model</artifactId> 
-	<version>0.8.0-SNAPSHOT</version>
+	<version>1.0.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
 	<dependencies>
 	</dependencies>
diff --git a/plugins/org.eclipse.bpel.apache.ode.deploy.ui/META-INF/MANIFEST.MF b/plugins/org.eclipse.bpel.apache.ode.deploy.ui/META-INF/MANIFEST.MF
index c2aad77..357c89c 100644
--- a/plugins/org.eclipse.bpel.apache.ode.deploy.ui/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.bpel.apache.ode.deploy.ui/META-INF/MANIFEST.MF
@@ -2,19 +2,19 @@
 Bundle-ManifestVersion: 2

 Bundle-Name: ODE Deploy Descriptor UI Plug-in

 Bundle-SymbolicName: org.eclipse.bpel.apache.ode.deploy.ui; singleton:=true

-Bundle-Version: 0.8.0.qualifier

+Bundle-Version: 1.0.0.qualifier

 Bundle-Activator: org.eclipse.bpel.apache.ode.deploy.ui.Activator

 Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",

  org.eclipse.core.resources;bundle-version="[3.4.0,4.0.0)",

  org.eclipse.ui.ide;bundle-version="[3.4.0,4.0.0)",

  org.eclipse.ui.forms;bundle-version="[3.3.100,4.0.0)",

- org.eclipse.bpel.apache.ode.deploy.model;bundle-version="0.8.0",

- org.eclipse.bpel.model;bundle-version="0.8.0",

+ org.eclipse.bpel.apache.ode.deploy.model;bundle-version="1.0.0",

+ org.eclipse.bpel.model;bundle-version="1.0.0",

  org.eclipse.wst.wsdl;bundle-version="[1.1.200,2.0.0)",

  org.eclipse.xsd;bundle-version="[2.4.0,3.0.0)",

  javax.wsdl;bundle-version="1.6.2",

  org.eclipse.emf.edit.ui;bundle-version="[2.4.0,3.0.0)",

- org.eclipse.bpel.ui;bundle-version="0.8.0",

+ org.eclipse.bpel.ui;bundle-version="1.0.0",

  org.eclipse.wst.common.modulecore,

  org.eclipse.wst.common.core,

  org.eclipse.wst.common.modulecore,

diff --git a/plugins/org.eclipse.bpel.apache.ode.deploy.ui/pom.xml b/plugins/org.eclipse.bpel.apache.ode.deploy.ui/pom.xml
index b3073cf..994b9a2 100644
--- a/plugins/org.eclipse.bpel.apache.ode.deploy.ui/pom.xml
+++ b/plugins/org.eclipse.bpel.apache.ode.deploy.ui/pom.xml
@@ -9,6 +9,6 @@
 	</parent>
 	<groupId>org.eclipse.bpel.plugins</groupId>
 	<artifactId>org.eclipse.bpel.apache.ode.deploy.ui</artifactId> 
-	<version>0.8.0-SNAPSHOT</version>
+	<version>1.0.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
 </project>
diff --git a/plugins/org.eclipse.bpel.apache.ode.runtime/META-INF/MANIFEST.MF b/plugins/org.eclipse.bpel.apache.ode.runtime/META-INF/MANIFEST.MF
index b9f962b..15e6998 100644
--- a/plugins/org.eclipse.bpel.apache.ode.runtime/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.bpel.apache.ode.runtime/META-INF/MANIFEST.MF
@@ -2,14 +2,14 @@
 Bundle-ManifestVersion: 2

 Bundle-Name: %pluginName

 Bundle-SymbolicName: org.eclipse.bpel.apache.ode.runtime;singleton:=true

-Bundle-Version: 0.8.0.qualifier

+Bundle-Version: 1.0.0.qualifier

 Bundle-Vendor: %providerName

 Bundle-Localization: plugin

 Require-Bundle: org.eclipse.ui;bundle-version="[3.4.0,4.0.0)",

  org.eclipse.wst.server.core;bundle-version="[1.1.0,2.0.0)",

  org.eclipse.jst.server.generic.core;bundle-version="[1.0.305,2.0.0)",

  org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",

- org.eclipse.bpel.runtimes;bundle-version="0.8.0",

+ org.eclipse.bpel.runtimes;bundle-version="1.0.0",

  org.eclipse.jst.server.core;bundle-version="[1.1.0,2.0.0)"

 Bundle-Activator: org.eclipse.bpel.apache.ode.runtime.OdePlugin

 Export-Package: org.eclipse.bpel.apache.ode.runtime

diff --git a/plugins/org.eclipse.bpel.apache.ode.runtime/pom.xml b/plugins/org.eclipse.bpel.apache.ode.runtime/pom.xml
index 4717928..4cbd355 100644
--- a/plugins/org.eclipse.bpel.apache.ode.runtime/pom.xml
+++ b/plugins/org.eclipse.bpel.apache.ode.runtime/pom.xml
@@ -9,6 +9,6 @@
 	</parent>
 	<groupId>org.eclipse.bpel.plugins</groupId>
 	<artifactId>org.eclipse.bpel.apache.ode.runtime</artifactId> 
-	<version>0.8.0-SNAPSHOT</version>
+	<version>1.0.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
 </project>
diff --git a/plugins/org.eclipse.bpel.cheatsheet/META-INF/MANIFEST.MF b/plugins/org.eclipse.bpel.cheatsheet/META-INF/MANIFEST.MF
index e136ab6..bf03a47 100644
--- a/plugins/org.eclipse.bpel.cheatsheet/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.bpel.cheatsheet/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: %PLUGIN_NAME
 Bundle-SymbolicName: org.eclipse.bpel.cheatsheet;singleton:=true
-Bundle-Version: 0.8.0.qualifier
+Bundle-Version: 1.0.0.qualifier
 Bundle-Activator: org.eclipse.bpel.cheatsheet.Activator
 Bundle-Localization: plugin
 Require-Bundle: org.eclipse.ui,
diff --git a/plugins/org.eclipse.bpel.cheatsheet/pom.xml b/plugins/org.eclipse.bpel.cheatsheet/pom.xml
index 146afdc..896e537 100644
--- a/plugins/org.eclipse.bpel.cheatsheet/pom.xml
+++ b/plugins/org.eclipse.bpel.cheatsheet/pom.xml
@@ -9,6 +9,6 @@
 	</parent>
 	<groupId>org.eclipse.bpel.plugins</groupId>
 	<artifactId>org.eclipse.bpel.cheatsheet</artifactId> 
-	<version>0.8.0-SNAPSHOT</version>
+	<version>1.0.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
 </project>
diff --git a/plugins/org.eclipse.bpel.common.model/META-INF/MANIFEST.MF b/plugins/org.eclipse.bpel.common.model/META-INF/MANIFEST.MF
index 3a77c29..223d900 100644
--- a/plugins/org.eclipse.bpel.common.model/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.bpel.common.model/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: %pluginName
 Bundle-SymbolicName: org.eclipse.bpel.common.model; singleton:=true
-Bundle-Version: 0.8.0.qualifier
+Bundle-Version: 1.0.0.qualifier
 Bundle-Activator: org.eclipse.bpel.common.extension.model.Activator
 Bundle-Localization: plugin
 Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",
diff --git a/plugins/org.eclipse.bpel.common.model/pom.xml b/plugins/org.eclipse.bpel.common.model/pom.xml
index 6c34492..e309c0d 100644
--- a/plugins/org.eclipse.bpel.common.model/pom.xml
+++ b/plugins/org.eclipse.bpel.common.model/pom.xml
@@ -9,6 +9,6 @@
 	</parent>
 	<groupId>org.eclipse.bpel.plugins</groupId>
 	<artifactId>org.eclipse.bpel.common.model</artifactId> 
-	<version>0.8.0-SNAPSHOT</version>
+	<version>1.0.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
 </project>
diff --git a/plugins/org.eclipse.bpel.common.ui/META-INF/MANIFEST.MF b/plugins/org.eclipse.bpel.common.ui/META-INF/MANIFEST.MF
index 8a9b02c..4cce43d 100644
--- a/plugins/org.eclipse.bpel.common.ui/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.bpel.common.ui/META-INF/MANIFEST.MF
@@ -1,8 +1,8 @@
 Manifest-Version: 1.0
 Bundle-ManifestVersion: 2
-Bundle-Name: Common UI (Incubation)
+Bundle-Name: Common UI
 Bundle-SymbolicName: org.eclipse.bpel.common.ui; singleton:=true 
-Bundle-Version: 0.8.0.qualifier
+Bundle-Version: 1.0.0.qualifier
 Bundle-Activator: org.eclipse.bpel.common.ui.CommonUIPlugin
 Bundle-Localization: plugin
 Require-Bundle: org.eclipse.ui;bundle-version="[3.4.0,4.0.0)",
@@ -11,7 +11,7 @@
  org.eclipse.core.resources;bundle-version="[3.4.0,4.0.0)",
  org.eclipse.gef;bundle-version="[3.4.0,4.0.0)",
  org.eclipse.emf.ecore.change;bundle-version="[2.4.0,3.0.0)",
- org.eclipse.bpel.model;bundle-version="0.8.0"
+ org.eclipse.bpel.model;bundle-version="1.0.0"
 Bundle-ActivationPolicy: lazy
 Export-Package: org.eclipse.bpel.common.ui,
  org.eclipse.bpel.common.ui.assist,
diff --git a/plugins/org.eclipse.bpel.common.ui/pom.xml b/plugins/org.eclipse.bpel.common.ui/pom.xml
index aa0dece..35b8040 100644
--- a/plugins/org.eclipse.bpel.common.ui/pom.xml
+++ b/plugins/org.eclipse.bpel.common.ui/pom.xml
@@ -9,6 +9,6 @@
 	</parent>
 	<groupId>org.eclipse.bpel.plugins</groupId>
 	<artifactId>org.eclipse.bpel.common.ui</artifactId> 
-	<version>0.8.0-SNAPSHOT</version>
+	<version>1.0.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
 </project>
diff --git a/plugins/org.eclipse.bpel.common.wsdl/META-INF/MANIFEST.MF b/plugins/org.eclipse.bpel.common.wsdl/META-INF/MANIFEST.MF
index 035f081..a95132a 100644
--- a/plugins/org.eclipse.bpel.common.wsdl/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.bpel.common.wsdl/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2

 Bundle-Name: SOA Commons for WSDL and XML Schemas

 Bundle-SymbolicName: org.eclipse.bpel.common.wsdl;singleton:=true

-Bundle-Version: 0.8.0.qualifier

+Bundle-Version: 1.0.0.qualifier

 Bundle-Activator: org.eclipse.bpel.common.wsdl.SoaWsdlCommonPlugin

 Bundle-Vendor: Eclipse.org

 Require-Bundle: org.eclipse.ui,

diff --git a/plugins/org.eclipse.bpel.common.wsdl/pom.xml b/plugins/org.eclipse.bpel.common.wsdl/pom.xml
index 7ee1713..2fd4c81 100644
--- a/plugins/org.eclipse.bpel.common.wsdl/pom.xml
+++ b/plugins/org.eclipse.bpel.common.wsdl/pom.xml
@@ -9,6 +9,6 @@
 	</parent>

 	<groupId>org.eclipse.bpel.plugins</groupId>

 	<artifactId>org.eclipse.bpel.common.wsdl</artifactId> 

-	<version>0.8.0-SNAPSHOT</version>

+	<version>1.0.0-SNAPSHOT</version>

 	<packaging>eclipse-plugin</packaging>

 </project>

diff --git a/plugins/org.eclipse.bpel.compare.ui/META-INF/MANIFEST.MF b/plugins/org.eclipse.bpel.compare.ui/META-INF/MANIFEST.MF
index 8a72e6b..4845cfb 100644
--- a/plugins/org.eclipse.bpel.compare.ui/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.bpel.compare.ui/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2

 Bundle-Name: BPEL Compare Plug-in

 Bundle-SymbolicName: org.eclipse.bpel.compare.ui;singleton:=true

-Bundle-Version: 0.8.0.qualifier

+Bundle-Version: 1.0.0.qualifier

 Bundle-Activator: org.eclipse.bpel.compare.ui.Activator

 Require-Bundle: org.eclipse.ui;bundle-version="[3.5.0,4.0.0)",

  org.eclipse.core.runtime;bundle-version="[3.5.0,4.0.0)",

@@ -11,17 +11,17 @@
  org.eclipse.core.resources;bundle-version="[3.5.0,4.0.0)",

  org.eclipse.emf.ecore;bundle-version="[2.5.0,3.0.0)",

  org.eclipse.emf.compare;bundle-version="[1.0.0,2.0.0)",

- org.eclipse.bpel.ui;bundle-version="0.8.0",

+ org.eclipse.bpel.ui;bundle-version="1.0.0",

  org.eclipse.bpel.common.ui;bundle-version="0.4.0",

  org.eclipse.gef;bundle-version="[3.5.0,4.0.0)",

  org.eclipse.ui.ide;bundle-version="[3.5.0,4.0.0)",

- org.eclipse.bpel.model;bundle-version="0.8.0",

+ org.eclipse.bpel.model;bundle-version="1.0.0",

  org.eclipse.wst.wsdl;bundle-version="[1.1.200,2.0.0)",

  javax.wsdl;bundle-version="1.6.2",

  org.eclipse.gmf.runtime.diagram.ui;bundle-version="1.1.3",

  org.eclipse.emf.compare.match;bundle-version="[1.0.0,2.0.0)",

  org.eclipse.emf.compare.diff;bundle-version="[1.0.0,2.0.0)",

- org.eclipse.bpel.common.model;bundle-version="0.8.0",

+ org.eclipse.bpel.common.model;bundle-version="1.0.0",

  org.eclipse.emf.compare.ui;bundle-version="[1.0.0,2.0.0)"

 Bundle-ActivationPolicy: lazy

 Bundle-RequiredExecutionEnvironment: JavaSE-1.6

diff --git a/plugins/org.eclipse.bpel.compare.ui/pom.xml b/plugins/org.eclipse.bpel.compare.ui/pom.xml
index 3771b0b..c62ab48 100644
--- a/plugins/org.eclipse.bpel.compare.ui/pom.xml
+++ b/plugins/org.eclipse.bpel.compare.ui/pom.xml
@@ -9,6 +9,6 @@
 	</parent>
 	<groupId>org.eclipse.bpel.plugins</groupId>
 	<artifactId>org.eclipse.bpel.compare.ui</artifactId> 
-	<version>0.8.0-SNAPSHOT</version>
+	<version>1.0.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
 </project>
diff --git a/plugins/org.eclipse.bpel.examples.extensionPoints/META-INF/MANIFEST.MF b/plugins/org.eclipse.bpel.examples.extensionPoints/META-INF/MANIFEST.MF
index b0c378b..b4328b2 100644
--- a/plugins/org.eclipse.bpel.examples.extensionPoints/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.bpel.examples.extensionPoints/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2

 Bundle-Name: ExtensionPoints Plug-in

 Bundle-SymbolicName: org.eclipse.bpel.examples.extensionPoints;singleton:=true

-Bundle-Version: 0.8.0.qualifier

+Bundle-Version: 1.0.0.qualifier

 Bundle-Activator: org.eclipse.bpel.examples.extensionpoints.Activator

 Bundle-Vendor: eclipse.org

 Require-Bundle: org.eclipse.ui;bundle-version="3.3.0",

diff --git a/plugins/org.eclipse.bpel.examples.extensionPoints/pom.xml b/plugins/org.eclipse.bpel.examples.extensionPoints/pom.xml
index db6db10..4231715 100644
--- a/plugins/org.eclipse.bpel.examples.extensionPoints/pom.xml
+++ b/plugins/org.eclipse.bpel.examples.extensionPoints/pom.xml
@@ -9,6 +9,6 @@
 	</parent>
 	<groupId>org.eclipse.bpel.plugins</groupId>
 	<artifactId>org.eclipse.bpel.examples.extensionPoints</artifactId> 
-	<version>0.8.0-SNAPSHOT</version>
+	<version>1.0.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
 </project>
diff --git a/plugins/org.eclipse.bpel.help/META-INF/MANIFEST.MF b/plugins/org.eclipse.bpel.help/META-INF/MANIFEST.MF
index 06284cb..3441f5d 100644
--- a/plugins/org.eclipse.bpel.help/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.bpel.help/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: ExtensionPoints Plug-in
 Bundle-SymbolicName: org.eclipse.bpel.help;singleton:=true
-Bundle-Version: 0.8.0.qualifier
+Bundle-Version: 1.0.0.qualifier
 Bundle-Vendor: eclipse.org
 Bundle-ActivationPolicy: lazy
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
diff --git a/plugins/org.eclipse.bpel.help/pom.xml b/plugins/org.eclipse.bpel.help/pom.xml
index 32a9636..c7b37a6 100644
--- a/plugins/org.eclipse.bpel.help/pom.xml
+++ b/plugins/org.eclipse.bpel.help/pom.xml
@@ -9,6 +9,6 @@
 	</parent>
 	<groupId>org.eclipse.bpel.plugins</groupId>
 	<artifactId>org.eclipse.bpel.help</artifactId> 
-	<version>0.8.0-SNAPSHOT</version>
+	<version>1.0.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
 </project>
diff --git a/plugins/org.eclipse.bpel.jboss.riftsaw.runtime/META-INF/MANIFEST.MF b/plugins/org.eclipse.bpel.jboss.riftsaw.runtime/META-INF/MANIFEST.MF
index a5a98f3..c0b42be 100644
--- a/plugins/org.eclipse.bpel.jboss.riftsaw.runtime/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.bpel.jboss.riftsaw.runtime/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2

 Bundle-Name: %pluginName

 Bundle-SymbolicName: org.eclipse.bpel.jboss.riftsaw.runtime;singleton:=true

-Bundle-Version: 0.8.0.qualifier

+Bundle-Version: 1.0.0.qualifier

 Bundle-Vendor: %providerName

 Bundle-Localization: plugin

 Require-Bundle: org.eclipse.wst.server.core;bundle-version="[1.1.0,2.0.0)",

diff --git a/plugins/org.eclipse.bpel.jboss.riftsaw.runtime/pom.xml b/plugins/org.eclipse.bpel.jboss.riftsaw.runtime/pom.xml
index ffe0aa9..81d312c 100644
--- a/plugins/org.eclipse.bpel.jboss.riftsaw.runtime/pom.xml
+++ b/plugins/org.eclipse.bpel.jboss.riftsaw.runtime/pom.xml
@@ -9,6 +9,6 @@
 	</parent>
 	<groupId>org.eclipse.bpel.plugins</groupId>
 	<artifactId>org.eclipse.bpel.jboss.riftsaw.runtime</artifactId> 
-	<version>0.8.0-SNAPSHOT</version>
+	<version>1.0.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
 </project>
diff --git a/plugins/org.eclipse.bpel.model/META-INF/MANIFEST.MF b/plugins/org.eclipse.bpel.model/META-INF/MANIFEST.MF
index 886a107..db9d4cc 100644
--- a/plugins/org.eclipse.bpel.model/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.bpel.model/META-INF/MANIFEST.MF
@@ -1,36 +1,36 @@
-Manifest-Version: 1.0

-Bundle-ManifestVersion: 2

-Bundle-Name: BPEL Model (Incubation)

-Bundle-SymbolicName: org.eclipse.bpel.model; singleton:=true

-Bundle-Version: 0.8.0.qualifier

-Bundle-Activator: org.eclipse.bpel.model.BPELPlugin$Implementation

-Bundle-Vendor: eclipse.org

-Bundle-Localization: plugin

-Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",

- org.eclipse.core.resources;bundle-version="[3.4.0,4.0.0)",

- org.eclipse.emf.ecore.xmi;bundle-version="[2.4.0,3.0.0)",

- org.eclipse.xsd;bundle-version="[2.4.0,3.0.0)",

- org.eclipse.wst.wsdl,

- javax.wsdl;bundle-version="1.6.2",

- org.eclipse.bpel.common.model;bundle-version="0.8.0",

- org.eclipse.wst.xml.core,

- org.eclipse.wst.xml.ui

-Bundle-ActivationPolicy: lazy

-Export-Package: org.eclipse.bpel.model,

- org.eclipse.bpel.model.adapters,

- org.eclipse.bpel.model.extensions,

- org.eclipse.bpel.model.impl,

- org.eclipse.bpel.model.messageproperties,

- org.eclipse.bpel.model.messageproperties.util,

- org.eclipse.bpel.model.partnerlinktype,

- org.eclipse.bpel.model.partnerlinktype.util,

- org.eclipse.bpel.model.proxy,

- org.eclipse.bpel.model.reordering,

- org.eclipse.bpel.model.reordering.extensions,

- org.eclipse.bpel.model.resource,

- org.eclipse.bpel.model.terms,

- org.eclipse.bpel.model.util

-Bundle-RequiredExecutionEnvironment: JavaSE-1.6

-Import-Package: org.eclipse.wst.xsd.contentmodel.internal,

- org.eclipse.wst.xml.ui.internal.wizards

-

+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: BPEL Model
+Bundle-SymbolicName: org.eclipse.bpel.model; singleton:=true
+Bundle-Version: 1.0.0.qualifier
+Bundle-Activator: org.eclipse.bpel.model.BPELPlugin$Implementation
+Bundle-Vendor: eclipse.org
+Bundle-Localization: plugin
+Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",
+ org.eclipse.core.resources;bundle-version="[3.4.0,4.0.0)",
+ org.eclipse.emf.ecore.xmi;bundle-version="[2.4.0,3.0.0)",
+ org.eclipse.xsd;bundle-version="[2.4.0,3.0.0)",
+ org.eclipse.wst.wsdl,
+ javax.wsdl;bundle-version="1.6.2",
+ org.eclipse.bpel.common.model;bundle-version="1.0.0",
+ org.eclipse.wst.xml.core,
+ org.eclipse.wst.xml.ui
+Bundle-ActivationPolicy: lazy
+Export-Package: org.eclipse.bpel.model,
+ org.eclipse.bpel.model.adapters,
+ org.eclipse.bpel.model.extensions,
+ org.eclipse.bpel.model.impl,
+ org.eclipse.bpel.model.messageproperties,
+ org.eclipse.bpel.model.messageproperties.util,
+ org.eclipse.bpel.model.partnerlinktype,
+ org.eclipse.bpel.model.partnerlinktype.util,
+ org.eclipse.bpel.model.proxy,
+ org.eclipse.bpel.model.reordering,
+ org.eclipse.bpel.model.reordering.extensions,
+ org.eclipse.bpel.model.resource,
+ org.eclipse.bpel.model.terms,
+ org.eclipse.bpel.model.util
+Bundle-RequiredExecutionEnvironment: JavaSE-1.6
+Import-Package: org.eclipse.wst.xsd.contentmodel.internal,
+ org.eclipse.wst.xml.ui.internal.wizards
+
diff --git a/plugins/org.eclipse.bpel.model/pom.xml b/plugins/org.eclipse.bpel.model/pom.xml
index 5416320..c86f3b7 100644
--- a/plugins/org.eclipse.bpel.model/pom.xml
+++ b/plugins/org.eclipse.bpel.model/pom.xml
@@ -9,6 +9,6 @@
 	</parent>
 	<groupId>org.eclipse.bpel.plugins</groupId>
 	<artifactId>org.eclipse.bpel.model</artifactId> 
-	<version>0.8.0-SNAPSHOT</version>
+	<version>1.0.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
 </project>
diff --git a/plugins/org.eclipse.bpel.runtimes/META-INF/MANIFEST.MF b/plugins/org.eclipse.bpel.runtimes/META-INF/MANIFEST.MF
index a1c2f7d..8ac4ff8 100644
--- a/plugins/org.eclipse.bpel.runtimes/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.bpel.runtimes/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2

 Bundle-Name: %pluginName

 Bundle-SymbolicName: org.eclipse.bpel.runtimes; singleton:=true

-Bundle-Version: 0.8.0.qualifier

+Bundle-Version: 1.0.0.qualifier

 Bundle-Activator: org.eclipse.bpel.runtimes.RuntimesPlugin

 Bundle-Localization: plugin

 Require-Bundle: org.eclipse.ui;bundle-version="[3.4.0,4.0.0)",

@@ -18,7 +18,7 @@
  org.eclipse.jst.server.generic.core;bundle-version="[1.0.305,2.0.0)",

  org.eclipse.jem.util;bundle-version="[2.0.100,3.0.0)",

  org.eclipse.debug.ui;bundle-version="[3.4.0,4.0.0)",

- org.eclipse.bpel.model;bundle-version="0.8.0",

+ org.eclipse.bpel.model;bundle-version="1.0.0",

  org.eclipse.emf.ecore;bundle-version="[2.4.0,3.0.0)",

  javax.wsdl;bundle-version="1.6.2",

  org.eclipse.wst.wsdl;bundle-version="[1.1.200,2.0.0)",

diff --git a/plugins/org.eclipse.bpel.runtimes/pom.xml b/plugins/org.eclipse.bpel.runtimes/pom.xml
index 7af2544..6027148 100644
--- a/plugins/org.eclipse.bpel.runtimes/pom.xml
+++ b/plugins/org.eclipse.bpel.runtimes/pom.xml
@@ -9,6 +9,6 @@
 	</parent>
 	<groupId>org.eclipse.bpel.plugins</groupId>
 	<artifactId>org.eclipse.bpel.runtimes</artifactId> 
-	<version>0.8.0-SNAPSHOT</version>
+	<version>1.0.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
 </project>
diff --git a/plugins/org.eclipse.bpel.ui/META-INF/MANIFEST.MF b/plugins/org.eclipse.bpel.ui/META-INF/MANIFEST.MF
index 8264e4e..62f5138 100644
--- a/plugins/org.eclipse.bpel.ui/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.bpel.ui/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2

 Bundle-Name: %pluginName

 Bundle-SymbolicName: org.eclipse.bpel.ui; singleton:=true 

-Bundle-Version: 0.8.0.qualifier

+Bundle-Version: 1.0.0.qualifier

 Bundle-Activator: org.eclipse.bpel.ui.BPELUIPlugin

 Bundle-Vendor: %providerName

 Bundle-Localization: plugin

@@ -15,12 +15,12 @@
  org.eclipse.jface.text;bundle-version="[3.4.0,4.0.0)",

  org.eclipse.gef;bundle-version="[3.4.0,4.0.0)",

  org.eclipse.xsd;bundle-version="[2.4.0,3.0.0)",

- org.eclipse.bpel.common.ui;bundle-version="0.8.0",

+ org.eclipse.bpel.common.ui;bundle-version="1.0.0",

  org.eclipse.wst.wsdl;bundle-version="[1.1.200,2.0.0)",

- org.eclipse.bpel.common.model;bundle-version="0.8.0",

- org.eclipse.bpel.model;bundle-version="0.8.0",

+ org.eclipse.bpel.common.model;bundle-version="1.0.0",

+ org.eclipse.bpel.model;bundle-version="1.0.0",

  org.eclipse.wst.xml.core;bundle-version="[1.1.300,2.0.0)",

- org.eclipse.bpel.wsil.model;bundle-version="0.8.0",

+ org.eclipse.bpel.wsil.model;bundle-version="1.0.0",

  org.eclipse.wst.sse.ui;bundle-version="[1.1.0,2.0.0)",

  org.eclipse.wst.sse.core;bundle-version="[1.1.300,2.0.0)",

  javax.wsdl;bundle-version="1.6.2";visibility:=reexport,

diff --git a/plugins/org.eclipse.bpel.ui/plugin.properties b/plugins/org.eclipse.bpel.ui/plugin.properties
index e1ff86e..cac20a1 100644
--- a/plugins/org.eclipse.bpel.ui/plugin.properties
+++ b/plugins/org.eclipse.bpel.ui/plugin.properties
@@ -1,70 +1,70 @@
-###############################################################################

-# Copyright (c) 2010, 2012 JBoss by Red Hat and others.

-# All rights reserved. This program and the accompanying materials 

-# are made available under the terms of the Eclipse Public License v1.0

-# which accompanies this distribution, and is available at

-# http://www.eclipse.org/legal/epl-v10.html

-#

-# Contributors:

-#     IBM Corporation - initial API and implementation

-#     JBoss by Red Hat - subsequent contributions and maintenance

-###############################################################################

-PLUGIN_NAME=BPEL Editor

-BPEL_EDITOR_NAME=Business Process Editor

-HOVERHELP_HELPER_NAME=Hoverhelp Helper

-EXPRESSION_LANGUAGE_EDITORS_NAME=Expression Language Editors

-NEW_BPEL_BUSINESS_PROCESS_NAME=Business Process

-

-DETAILS_PAGES_DESCRIPTION_LABEL=Description

-DETAILS_PAGES_DETAILS_LABEL=Details

-DETAILS_PAGES_COMPENSATION_LABEL=Compensation

-DETAILS_PAGES_REPEAT_LABEL=Repeat

-DETAILS_PAGES_EXPIRATION_LABEL=Expiration

-DETAILS_PAGES_JOIN_BEHAVIOUR_LABEL=Join Behavior

-DETAILS_PAGES_CORRELATION_LABEL=Correlation

-DETAILS_PAGES_EXPRESSIONS_LABEL=Expressions

-DETAILS_PAGES_IMPORTS_LABEL=Imports

-DETAILS_PAGES_COUNTER_VALUES_LABEL=Counter Values

-DETAILS_PAGES_COMPLETION_LABEL=Completion

-DETAILS_PAGES_INITIALIZATION_LABEL=Initialization

-DETAILS_PAGES_DOCUMENTATION_LABEL=Documentation

-DETAILS_PAGES_MESSAGE_EXCHANGE_LABEL=Message Exchange

-# Bugzilla 324162

-DETAILS_PAGES_NAMESPACEPREFIXES_LABEL=Namespaces

-

-XPATH_LABEL=XPath 1.0

-XPATH_LABEL20 = XPath 1.0 in BPEL 2.0

-#

-UI_MARKER_LABEL=UI Marker

-PREFERENCE_PAGE_HOME=BPEL

-PREFERENCE_PAGE_EDITOR=Editor

-PREFERENCE_PAGE_WSIL=WSIL Browser

-PREFERENCE_PAGE_EXPRESSION_EDITOR=Expression Editors

-PREFERENCE_PAGE_XPATH_EDITOR_TEMPLATES=Templates

-

-

-CREATE_A_NEW_PROCESS=Create a new Business Process

-BASIC_ACTIONS=Basic Actions

-

-COMPONENT_NAME=Process

-COMPONENT_DESCRIPTION=Business Process

-

-NEW_BPEL_CATEGORY=BPEL 2.0

-NEW_BPEL_FILE=BPEL Process File

-EXPORT_AS_IMAGE_TOOLTIP=Export BPEL as image...

-EXPORT_AS_IMAGE_LABEL=Export as Image...

-

-DUPLICATE_ACTION_NAME = Duplicate

-DUPLICATE_ACTION_TOOLTIP = Duplicate the selected object.

-EXPRESSION_PROBLEM_MARKER_NAME = Expression Problem Marker

-RUNTIME_ADAPTERS_NAME = Runtime Adapters

-BPEL_EDITOR_FILE_NAME = BPEL Editor File

-BPEL_RESOURCE_DECORATOR_LABEL = BPEL Resource Decorator

-BPEL_PERSPECTIVE_NAME = BPEL

-EXPRESSION_LANGUAGE_EDITORS = Expression Language Editors

-ACTIONS_NAME = Actions

-

-# ====================================================================

-

-pluginName = BPEL Editor (Incubation)

-providerName = Eclipse.org

+###############################################################################
+# Copyright (c) 2010, 2012 JBoss by Red Hat and others.
+# All rights reserved. This program and the accompanying materials 
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+#     IBM Corporation - initial API and implementation
+#     JBoss by Red Hat - subsequent contributions and maintenance
+###############################################################################
+PLUGIN_NAME=BPEL Editor
+BPEL_EDITOR_NAME=Business Process Editor
+HOVERHELP_HELPER_NAME=Hoverhelp Helper
+EXPRESSION_LANGUAGE_EDITORS_NAME=Expression Language Editors
+NEW_BPEL_BUSINESS_PROCESS_NAME=Business Process
+
+DETAILS_PAGES_DESCRIPTION_LABEL=Description
+DETAILS_PAGES_DETAILS_LABEL=Details
+DETAILS_PAGES_COMPENSATION_LABEL=Compensation
+DETAILS_PAGES_REPEAT_LABEL=Repeat
+DETAILS_PAGES_EXPIRATION_LABEL=Expiration
+DETAILS_PAGES_JOIN_BEHAVIOUR_LABEL=Join Behavior
+DETAILS_PAGES_CORRELATION_LABEL=Correlation
+DETAILS_PAGES_EXPRESSIONS_LABEL=Expressions
+DETAILS_PAGES_IMPORTS_LABEL=Imports
+DETAILS_PAGES_COUNTER_VALUES_LABEL=Counter Values
+DETAILS_PAGES_COMPLETION_LABEL=Completion
+DETAILS_PAGES_INITIALIZATION_LABEL=Initialization
+DETAILS_PAGES_DOCUMENTATION_LABEL=Documentation
+DETAILS_PAGES_MESSAGE_EXCHANGE_LABEL=Message Exchange
+# Bugzilla 324162
+DETAILS_PAGES_NAMESPACEPREFIXES_LABEL=Namespaces
+
+XPATH_LABEL=XPath 1.0
+XPATH_LABEL20 = XPath 1.0 in BPEL 2.0
+#
+UI_MARKER_LABEL=UI Marker
+PREFERENCE_PAGE_HOME=BPEL
+PREFERENCE_PAGE_EDITOR=Editor
+PREFERENCE_PAGE_WSIL=WSIL Browser
+PREFERENCE_PAGE_EXPRESSION_EDITOR=Expression Editors
+PREFERENCE_PAGE_XPATH_EDITOR_TEMPLATES=Templates
+
+
+CREATE_A_NEW_PROCESS=Create a new Business Process
+BASIC_ACTIONS=Basic Actions
+
+COMPONENT_NAME=Process
+COMPONENT_DESCRIPTION=Business Process
+
+NEW_BPEL_CATEGORY=BPEL 2.0
+NEW_BPEL_FILE=BPEL Process File
+EXPORT_AS_IMAGE_TOOLTIP=Export BPEL as image...
+EXPORT_AS_IMAGE_LABEL=Export as Image...
+
+DUPLICATE_ACTION_NAME = Duplicate
+DUPLICATE_ACTION_TOOLTIP = Duplicate the selected object.
+EXPRESSION_PROBLEM_MARKER_NAME = Expression Problem Marker
+RUNTIME_ADAPTERS_NAME = Runtime Adapters
+BPEL_EDITOR_FILE_NAME = BPEL Editor File
+BPEL_RESOURCE_DECORATOR_LABEL = BPEL Resource Decorator
+BPEL_PERSPECTIVE_NAME = BPEL
+EXPRESSION_LANGUAGE_EDITORS = Expression Language Editors
+ACTIONS_NAME = Actions
+
+# ====================================================================
+
+pluginName = BPEL Editor
+providerName = Eclipse.org
diff --git a/plugins/org.eclipse.bpel.ui/pom.xml b/plugins/org.eclipse.bpel.ui/pom.xml
index 9539cbd..e33478c 100644
--- a/plugins/org.eclipse.bpel.ui/pom.xml
+++ b/plugins/org.eclipse.bpel.ui/pom.xml
@@ -9,6 +9,6 @@
 	</parent>
 	<groupId>org.eclipse.bpel.plugins</groupId>
 	<artifactId>org.eclipse.bpel.ui</artifactId> 
-	<version>0.8.0-SNAPSHOT</version>
+	<version>1.0.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
 </project>
diff --git a/plugins/org.eclipse.bpel.validator/META-INF/MANIFEST.MF b/plugins/org.eclipse.bpel.validator/META-INF/MANIFEST.MF
index 145a1bd..21a7f89 100644
--- a/plugins/org.eclipse.bpel.validator/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.bpel.validator/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2

 Bundle-Name: %pluginName

 Bundle-SymbolicName: org.eclipse.bpel.validator;singleton:=true

-Bundle-Version: 0.8.0.qualifier

+Bundle-Version: 1.0.0.qualifier

 Bundle-Activator: org.eclipse.bpel.validator.Activator

 Bundle-Vendor: %providerName

 Bundle-Localization: plugin

@@ -11,13 +11,13 @@
  org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",

  org.eclipse.xsd;bundle-version="[2.4.0,3.0.0)",

  org.eclipse.wst.wsdl;bundle-version="[1.1.200,2.0.0)",

- org.eclipse.bpel.model;bundle-version="0.8.0",

- org.eclipse.bpel.common.model;bundle-version="0.8.0",

+ org.eclipse.bpel.model;bundle-version="1.0.0",

+ org.eclipse.bpel.common.model;bundle-version="1.0.0",

  org.eclipse.wst.validation;bundle-version="[1.2.0,2.0.0)",

  org.eclipse.wst.wsdl.validation;bundle-version="[1.1.301,2.0.0)",

  org.eclipse.wst.xml.core;bundle-version="[1.1.300,2.0.0)",

  javax.wsdl;bundle-version="1.6.2",

- org.eclipse.bpel.xpath10;bundle-version="0.8.0"

+ org.eclipse.bpel.xpath10;bundle-version="1.0.0"

 Bundle-ActivationPolicy: lazy

 Bundle-RequiredExecutionEnvironment: JavaSE-1.6

 Bundle-ClassPath: .

diff --git a/plugins/org.eclipse.bpel.validator/plugin.properties b/plugins/org.eclipse.bpel.validator/plugin.properties
index 6dd7b3b..9b0974f 100644
--- a/plugins/org.eclipse.bpel.validator/plugin.properties
+++ b/plugins/org.eclipse.bpel.validator/plugin.properties
@@ -1,32 +1,32 @@
-###############################################################################

-# Copyright (c) 2010 JBoss by Red Hat and others.

-# All rights reserved. This program and the accompanying materials 

-# are made available under the terms of the Eclipse Public License v1.0

-# which accompanies this distribution, and is available at

-# http://www.eclipse.org/legal/epl-v10.html

-# 

-# Contributors:

-#     IBM Corporation - initial API and implementation

-#     JBoss by Red Hat - subsequent contributions and maintenance

-###############################################################################

-# <copyright>

-# </copyright>

-#

-# $Id: plugin.properties,v 1.1 2010/09/13 04:58:02 nickb Exp $

-

-# ====================================================================

-# To code developer:

-#   Do NOT change the properties between this line and the

-#   "%%% END OF TRANSLATED PROPERTIES %%%" line.

-#   Make a new property name, append to the end of the file and change

-#   the code to use the new property.

-# ====================================================================

-

-# ====================================================================

-# %%% END OF TRANSLATED PROPERTIES %%%

-# ====================================================================

-

-

-pluginName = Validator Plug-in (Incubation)

-providerName = Eclipse.org

-

+###############################################################################
+# Copyright (c) 2010 JBoss by Red Hat and others.
+# All rights reserved. This program and the accompanying materials 
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+#     JBoss by Red Hat - subsequent contributions and maintenance
+###############################################################################
+# <copyright>
+# </copyright>
+#
+# $Id: plugin.properties,v 1.1 2010/09/13 04:58:02 nickb Exp $
+
+# ====================================================================
+# To code developer:
+#   Do NOT change the properties between this line and the
+#   "%%% END OF TRANSLATED PROPERTIES %%%" line.
+#   Make a new property name, append to the end of the file and change
+#   the code to use the new property.
+# ====================================================================
+
+# ====================================================================
+# %%% END OF TRANSLATED PROPERTIES %%%
+# ====================================================================
+
+
+pluginName = Validator Plug-in
+providerName = Eclipse.org
+
diff --git a/plugins/org.eclipse.bpel.validator/pom.xml b/plugins/org.eclipse.bpel.validator/pom.xml
index 20f219a..beffecc 100644
--- a/plugins/org.eclipse.bpel.validator/pom.xml
+++ b/plugins/org.eclipse.bpel.validator/pom.xml
@@ -9,6 +9,6 @@
 	</parent>
 	<groupId>org.eclipse.bpel.plugins</groupId>
 	<artifactId>org.eclipse.bpel.validator</artifactId> 
-	<version>0.8.0-SNAPSHOT</version>
+	<version>1.0.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
 </project>
diff --git a/plugins/org.eclipse.bpel.validator/src/org/eclipse/bpel/validator/rules/DocumentationValidator.java b/plugins/org.eclipse.bpel.validator/src/org/eclipse/bpel/validator/rules/DocumentationValidator.java
new file mode 100644
index 0000000..233cde3
--- /dev/null
+++ b/plugins/org.eclipse.bpel.validator/src/org/eclipse/bpel/validator/rules/DocumentationValidator.java
@@ -0,0 +1,11 @@
+package org.eclipse.bpel.validator.rules;
+
+import org.eclipse.bpel.validator.model.Validator;
+
+public class DocumentationValidator extends Validator {
+
+	public DocumentationValidator() {
+		// TODO Auto-generated constructor stub
+	}
+
+}
diff --git a/plugins/org.eclipse.bpel.wsil.model/META-INF/MANIFEST.MF b/plugins/org.eclipse.bpel.wsil.model/META-INF/MANIFEST.MF
index 3b71966..0f084af 100644
--- a/plugins/org.eclipse.bpel.wsil.model/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.bpel.wsil.model/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: %pluginName
 Bundle-SymbolicName: org.eclipse.bpel.wsil.model; singleton:=true
-Bundle-Version: 0.8.0.qualifier
+Bundle-Version: 1.0.0.qualifier
 Bundle-Vendor: %providerName
 Bundle-Localization: plugin
 Export-Package: org.eclipse.bpel.wsil.model.inspection;uses:="org.eclipse.emf.ecore.util,org.eclipse.emf.ecore,org.eclipse.emf.common.util",
diff --git a/plugins/org.eclipse.bpel.wsil.model/plugin.properties b/plugins/org.eclipse.bpel.wsil.model/plugin.properties
index 5a0a404..9e394ff 100644
--- a/plugins/org.eclipse.bpel.wsil.model/plugin.properties
+++ b/plugins/org.eclipse.bpel.wsil.model/plugin.properties
@@ -26,6 +26,6 @@
 # %%% END OF TRANSLATED PROPERTIES %%%
 # ====================================================================
 
-pluginName = WSIL Model (Incubation)
+pluginName = WSIL Model
 providerName = Eclipse.org
 
diff --git a/plugins/org.eclipse.bpel.wsil.model/pom.xml b/plugins/org.eclipse.bpel.wsil.model/pom.xml
index 5a2fe15..decea87 100644
--- a/plugins/org.eclipse.bpel.wsil.model/pom.xml
+++ b/plugins/org.eclipse.bpel.wsil.model/pom.xml
@@ -9,6 +9,6 @@
 	</parent>
 	<groupId>org.eclipse.bpelins</groupId>
 	<artifactId>org.eclipse.bpel.wsil.model</artifactId> 
-	<version>0.8.0-SNAPSHOT</version>
+	<version>1.0.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
 </project>
diff --git a/plugins/org.eclipse.bpel.xpath10.junit/META-INF/MANIFEST.MF b/plugins/org.eclipse.bpel.xpath10.junit/META-INF/MANIFEST.MF
index d10d42f..2f8dc5f 100644
--- a/plugins/org.eclipse.bpel.xpath10.junit/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.bpel.xpath10.junit/META-INF/MANIFEST.MF
@@ -2,8 +2,8 @@
 Bundle-ManifestVersion: 2

 Bundle-Name: Junit Fragment

 Bundle-SymbolicName: org.eclipse.bpel.xpath10.junit

-Bundle-Version: 0.8.0.qualifier

-Fragment-Host: org.eclipse.bpel.xpath10;bundle-version="0.8.0"

+Bundle-Version: 1.0.0.qualifier

+Fragment-Host: org.eclipse.bpel.xpath10;bundle-version="1.0.0"

 Bundle-RequiredExecutionEnvironment: JavaSE-1.6

 Require-Bundle: org.junit;bundle-version="4.8.1"

 Export-Package: org.eclipse.bpel.xpath10.parser

diff --git a/plugins/org.eclipse.bpel.xpath10.junit/pom.xml b/plugins/org.eclipse.bpel.xpath10.junit/pom.xml
index 64b38f9..d44db3f 100644
--- a/plugins/org.eclipse.bpel.xpath10.junit/pom.xml
+++ b/plugins/org.eclipse.bpel.xpath10.junit/pom.xml
@@ -9,6 +9,6 @@
 	</parent>
 	<groupId>org.eclipse.bpel.plugins</groupId>
 	<artifactId>org.eclipse.bpel.xpath10.junit</artifactId> 
-	<version>0.8.0-SNAPSHOT</version>
+	<version>1.0.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
 </project>
diff --git a/plugins/org.eclipse.bpel.xpath10/META-INF/MANIFEST.MF b/plugins/org.eclipse.bpel.xpath10/META-INF/MANIFEST.MF
index 06dcfe4..71c4353 100644
--- a/plugins/org.eclipse.bpel.xpath10/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.bpel.xpath10/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: %pluginName
 Bundle-SymbolicName: org.eclipse.bpel.xpath10
-Bundle-Version: 0.8.0.qualifier
+Bundle-Version: 1.0.0.qualifier
 Bundle-Localization: plugin
 Bundle-ClassPath: .,
  lib/antlr-runtime-3.0.1.jar
diff --git a/plugins/org.eclipse.bpel.xpath10/plugin.properties b/plugins/org.eclipse.bpel.xpath10/plugin.properties
index 27843d5..9285584 100644
--- a/plugins/org.eclipse.bpel.xpath10/plugin.properties
+++ b/plugins/org.eclipse.bpel.xpath10/plugin.properties
@@ -1,32 +1,32 @@
-###############################################################################

-# Copyright (c) 2010 JBoss by Red Hat and others.

-# All rights reserved. This program and the accompanying materials 

-# are made available under the terms of the Eclipse Public License v1.0

-# which accompanies this distribution, and is available at

-# http://www.eclipse.org/legal/epl-v10.html

-# 

-# Contributors:

-#     IBM Corporation - initial API and implementation

-#     JBoss by Red Hat - subsequent contributions and maintenance

-###############################################################################

-# <copyright>

-# </copyright>

-#

-# $Id: plugin.properties,v 1.1 2010/09/13 04:32:08 nickb Exp $

-

-# ====================================================================

-# To code developer:

-#   Do NOT change the properties between this line and the

-#   "%%% END OF TRANSLATED PROPERTIES %%%" line.

-#   Make a new property name, append to the end of the file and change

-#   the code to use the new property.

-# ====================================================================

-

-# ====================================================================

-# %%% END OF TRANSLATED PROPERTIES %%%

-# ====================================================================

-

-

-pluginName = XPath Parser 1.0 (Incubation)

-providerName = Eclipse.org

-

+###############################################################################
+# Copyright (c) 2010 JBoss by Red Hat and others.
+# All rights reserved. This program and the accompanying materials 
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+# 
+# Contributors:
+#     IBM Corporation - initial API and implementation
+#     JBoss by Red Hat - subsequent contributions and maintenance
+###############################################################################
+# <copyright>
+# </copyright>
+#
+# $Id: plugin.properties,v 1.1 2010/09/13 04:32:08 nickb Exp $
+
+# ====================================================================
+# To code developer:
+#   Do NOT change the properties between this line and the
+#   "%%% END OF TRANSLATED PROPERTIES %%%" line.
+#   Make a new property name, append to the end of the file and change
+#   the code to use the new property.
+# ====================================================================
+
+# ====================================================================
+# %%% END OF TRANSLATED PROPERTIES %%%
+# ====================================================================
+
+
+pluginName = XPath Parser 1.0
+providerName = Eclipse.org
+
diff --git a/plugins/org.eclipse.bpel.xpath10/pom.xml b/plugins/org.eclipse.bpel.xpath10/pom.xml
index 623f8e0..ad54863 100644
--- a/plugins/org.eclipse.bpel.xpath10/pom.xml
+++ b/plugins/org.eclipse.bpel.xpath10/pom.xml
@@ -9,6 +9,6 @@
 	</parent>
 	<groupId>org.eclipse.bpelins</groupId>
 	<artifactId>org.eclipse.bpel.xpath10</artifactId> 
-	<version>0.8.0-SNAPSHOT</version>
+	<version>1.0.0-SNAPSHOT</version>
 	<packaging>eclipse-plugin</packaging>
 </project>
diff --git a/site/category.xml b/site/category.xml
index a8db0af..4e3c6fc 100644
--- a/site/category.xml
+++ b/site/category.xml
@@ -1,15 +1,15 @@
 <?xml version="1.0" encoding="UTF-8"?>

 <site>

-   <feature url="features/org.eclipse.bpel.apache.ode.runtime.feature_0.8.0.qualifier.jar" id="org.eclipse.bpel.apache.ode.runtime.feature" version="0.8.0.qualifier">

+   <feature url="features/org.eclipse.bpel.apache.ode.runtime.feature_1.0.0.qualifier.jar" id="org.eclipse.bpel.apache.ode.runtime.feature" version="1.0.0.qualifier">

       <category name="Eclipse BPEL Designer"/>

    </feature>

-   <feature url="features/org.eclipse.bpel.feature_0.8.0.qualifier.jar" id="org.eclipse.bpel.feature" version="0.8.0.qualifier">

+   <feature url="features/org.eclipse.bpel.feature_1.0.0.qualifier.jar" id="org.eclipse.bpel.feature" version="1.0.0.qualifier">

       <category name="Eclipse BPEL Designer"/>

    </feature>

-   <feature url="features/org.eclipse.bpel.jboss.riftsaw.runtime.feature_0.8.0.qualifier.jar" id="org.eclipse.bpel.jboss.riftsaw.runtime.feature" version="0.8.0.qualifier">

+   <feature url="features/org.eclipse.bpel.jboss.riftsaw.runtime.feature_1.0.0.qualifier.jar" id="org.eclipse.bpel.jboss.riftsaw.runtime.feature" version="1.0.0.qualifier">

       <category name="Eclipse BPEL Designer"/>

    </feature>

-   <feature url="features/org.eclipse.bpel.common.feature_0.8.0.qualifier.jar" id="org.eclipse.bpel.common.feature" version="0.8.0.qualifier">

+   <feature url="features/org.eclipse.bpel.common.feature_1.0.0.qualifier.jar" id="org.eclipse.bpel.common.feature" version="1.0.0.qualifier">

       <category name="Eclipse BPEL Designer"/>

    </feature>

    <category-def name="Eclipse BPEL Designer" label="Eclipse BPEL Designer">

diff --git a/site/pom.xml b/site/pom.xml
index 66e88ef..e4ee5ee 100644
--- a/site/pom.xml
+++ b/site/pom.xml
@@ -18,7 +18,7 @@
 	<groupId>org.eclipse.bpel</groupId>
 	<artifactId>site</artifactId> 
 	<name>bpel.site</name>
-	<version>0.8.0</version>
+	<version>1.0.0</version>
 	<packaging>eclipse-repository</packaging>
 	
 	<profiles>