Bump the version number to the next release number

Signed-off-by: Lukas Jungmann <lukas.jungmann@oracle.com>
diff --git a/META-INF/MANIFEST.MF b/META-INF/MANIFEST.MF
index 8490f00..8def0ae 100644
--- a/META-INF/MANIFEST.MF
+++ b/META-INF/MANIFEST.MF
@@ -1,24 +1,23 @@
 Manifest-Version: 1.0
-Export-Package: javax.persistence;jpa="2.1";version="2.1.1",
- javax.persistence.criteria;jpa="2.1";version="2.1.1",
- javax.persistence.metamodel;jpa="2.1";version="2.1.1",
- javax.persistence.spi;jpa="2.1";version="2.1.1",
+Export-Package: javax.persistence;jpa="2.2";version="2.2.0",
+ javax.persistence.criteria;jpa="2.2";version="2.2.0",
+ javax.persistence.metamodel;jpa="2.2";version="2.2.0",
+ javax.persistence.spi;jpa="2.2";version="2.2.0",
  org.osgi.service.jpa;version="1.1.0"
-Implementation-Version: 2.1.1
+Implementation-Version: 2.2.0
 Bundle-ClassPath: .
 Specification-Vendor: Oracle
-Bundle-Name: Java Persistence API 2.1
+Bundle-Name: Java Persistence API 2.2
 Created-By: 1.6.0_35 (Sun Microsystems Inc.)
-Bundle-RequiredExecutionEnvironment: JavaSE-1.6
+Bundle-RequiredExecutionEnvironment: JavaSE-1.8
 Implementation-Vendor: Eclipse.org - EclipseLink Project
 Bundle-Vendor: Eclipse.org - EclipseLink Project
-Bundle-Version: 2.1.1.qualifier
+Bundle-Version: 2.2.0.qualifier
 Bundle-ManifestVersion: 2
 Bundle-Activator: org.eclipse.persistence.javax.persistence.osgi.Activator
 Import-Package: javax.sql;resolution:=optional,
  org.osgi.framework;resolution:=optional,
  org.osgi.service.jpa;version="1.1.0"
-Specification-Version: 2.1
+Specification-Version: 2.2
 Bundle-SymbolicName: javax.persistence
 Extension-Name: javax.persistence
-
diff --git a/build-api.xml b/build-api.xml
index b5f337a..877dd46 100644
--- a/build-api.xml
+++ b/build-api.xml
@@ -3,7 +3,7 @@
     <target name="info" depends="init">
         <!-- IMPL properties -->
         <property name="IMPL_NAMESPACE"      value="org.eclipse.persistence"/>
-        <property name="IMPL_VERSION"        value="2.1.1"/>
+        <property name="IMPL_VERSION"        value="2.2.0"/>
 
         <echo message="Metadata as defined by: 'https://wikis.oracle.com/display/GlassFish/Maven+Versioning+Rules':"/>
         <echo message=" "/>
@@ -118,15 +118,15 @@
            <format property="build.time" pattern="HHmm"/>
         </tstamp>
         <property name="API_PACKAGE"         value="javax.persistence"/>
-        <property name="SPEC_VERSION"        value="2.1"/>
-        <property name="SPEC_IMPL_VERSION"   value="2.1.1"/>
+        <property name="SPEC_VERSION"        value="2.2"/>
+        <property name="SPEC_IMPL_VERSION"   value="2.2.0"/>
         <property name="API_QUALIFIER"       value="b01"/>
 
         <property name="API_JAR"                    value="${API_PACKAGE}-api.jar"/>
         <property name="API_javadoc_file"           value="${API_PACKAGE}-api-javadoc.jar"/>
         <property name="API_source_file"            value="${API_PACKAGE}-api-sources.jar"/>
         <property name="OSGi_SymbolicName"          value="${API_PACKAGE}-api"/>
-        <property name="OSGi_BundleName"            value="Java Persistence API 2.1"/>
+        <property name="OSGi_BundleName"            value="Java Persistence API 2.2"/>
         <property name="OSGi_specversion"           value="${SPEC_VERSION}"/>
         <property name="OSGi_Bundle-Version"        value="${SPEC_IMPL_VERSION}"/>
         <property name="OSGi_Bundle-Vendor"         value="Eclipse.org - EclipseLink Project"/>
@@ -177,7 +177,7 @@
         <taskdef name="stripQualifier" classname="${custom.stripqualifier.task.class}" classpath="${custom.tasks.lib}"/>
 
         <property name="persistence.prefix"    value="${API_PACKAGE}"/>
-        <property name="persistence.criteria"  value="[2.0.100,2.2.0)"/>
+        <property name="persistence.criteria"  value="[2.0.100,2.3.0)"/>
 
         <selectbundle basename="${persistence.prefix}" directory="${build.2.plugins.dir}"
                      criterion="${persistence.criteria}" property="persistence.version" versiononly="true"
diff --git a/pom.xml b/pom.xml
index 0eda885..032c857 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
     <name>JPA Spec OSGi Bundle</name>
     <groupId>org.eclipse.persistence</groupId>
     <artifactId>javax.persistence</artifactId>
-    <version>2.1.1-SNAPSHOT</version>
+    <version>2.2.0-SNAPSHOT</version>
     <packaging>eclipse-plugin</packaging>
 
     <!-- tycho requires maven >= 3.0 -->
@@ -17,8 +17,8 @@
     <properties>
         <!-- TOOL Properties -->
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-        <tycho.version>0.18.0</tycho.version>
-        <release.version>2.1.1</release.version>
+        <tycho.version>0.23.0</tycho.version>
+        <release.version>2.2.0</release.version>
         <maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
         <build.qualifier>v${maven.build.timestamp}</build.qualifier>
         <forceContextQualifier>${build.qualifier}</forceContextQualifier>