Updated for groupId and artifactId changes (also used +1 for version, but don't anticipate an actual published build with this version)
diff --git a/META-INF/MANIFEST.MF b/META-INF/MANIFEST.MF
index 16de80f..aa78496 100644
--- a/META-INF/MANIFEST.MF
+++ b/META-INF/MANIFEST.MF
@@ -1,10 +1,10 @@
 Manifest-Version: 1.0
-Export-Package: javax.persistence;jpa="2.0";version="2.0.111",
- javax.persistence.criteria;jpa="2.0";version="2.0.111",
- javax.persistence.metamodel;jpa="2.0";version="2.0.111",
- javax.persistence.spi;jpa="2.0";version="2.0.111",
+Export-Package: javax.persistence;jpa="2.0";version="2.0.112",
+ javax.persistence.criteria;jpa="2.0";version="2.0.112",
+ javax.persistence.metamodel;jpa="2.0";version="2.0.112",
+ javax.persistence.spi;jpa="2.0";version="2.0.112",
  org.osgi.service.jpa;version="1.0.100"
-Implementation-Version: 2.0.111
+Implementation-Version: 2.0.112
 Bundle-ClassPath: .
 Specification-Vendor: Oracle
 Bundle-Name: Java Persistence API 2.1 preview
@@ -12,12 +12,12 @@
 Bundle-RequiredExecutionEnvironment: J2SE-1.5
 Implementation-Vendor: Eclipse.org - EclipseLink Project
 Bundle-Vendor: Eclipse.org - EclipseLink Project
-Bundle-Version: 2.0.111.qualifier
+Bundle-Version: 2.0.112.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.0.100"
 Specification-Version: 2.1 Draft 13
-Bundle-SymbolicName: javax.persistence
+Bundle-SymbolicName: javax.persistence-api
 
diff --git a/pom.xml b/pom.xml
index cf19a31..efe2d0a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,9 +4,9 @@
     <modelVersion>4.0.0</modelVersion>
 
     <name>JPA Spec OSGi Bundle</name>
-    <groupId>org.eclipse.persistence</groupId>
-    <artifactId>javax.persistence</artifactId>
-    <version>2.0.111-SNAPSHOT</version>
+    <groupId>javax.persistence</groupId>
+    <artifactId>javax.persistence-api</artifactId>
+    <version>2.0.112-SNAPSHOT</version>
     <packaging>eclipse-plugin</packaging>
 
     <!-- tycho requires maven >= 3.0 -->
@@ -17,12 +17,11 @@
     <properties>
         <!-- TOOL Properties -->
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-        <tycho.version>0.16.0</tycho.version>
-        <release.version>2.0.111</release.version>
+        <tycho.version>0.17.0</tycho.version>
+        <release.version>2.0.112</release.version>
         <build.qualifier>v${maven.build.timestamp}</build.qualifier>
         <forceContextQualifier>${build.qualifier}</forceContextQualifier>
         <!-- BUILD Properties -->
-        <orbit.drop>R20120526062928</orbit.drop>
         <eclipse.drop>juno</eclipse.drop>
     </properties>
 
@@ -43,11 +42,6 @@
                     <layout>p2</layout>
                     <url>http://download.eclipse.org/releases/${eclipse.drop}</url>
                 </repository>
-                <repository>
-                    <id>Orbit</id>
-                    <layout>p2</layout>
-                    <url>http://download.eclipse.org/tools/orbit/downloads/drops/${orbit.drop}/repository</url>
-                </repository>
              </repositories>
         </profile>
     </profiles>
@@ -122,14 +116,6 @@
                             <arch>x86_64</arch>
                         </environment>
                     </environments>
-                    <!-- target>
-                        <artifact>
-                            <groupId>${project.groupId}</groupId>
-                            <artifactId>${project.artifactId}</artifactId>
-                            <version>${project.version}</version>
-                            <classifier>${project.artifactId}_${release.version}.!!! issue here -> ${build.qualifier}!!! </classifier>
-                        </artifact>
-                    </target -->
                 </configuration>
             </plugin>
             <!-- Mostly working source bundle   generation -->
@@ -189,17 +175,9 @@
 
     <pluginRepositories>
         <pluginRepository>
-            <id>tycho-0.15.0-staged</id>
-            <url>https://oss.sonatype.org/content/repositories/orgeclipsetycho-255/</url>
-        </pluginRepository>
-        <pluginRepository>
             <id>tycho-public</id>
             <url>https://oss.sonatype.org/content/groups/public/</url>
         </pluginRepository>
-        <pluginRepository>
-            <id>maven-eclipse</id>
-            <url>http://repo1.maven.org</url>
-        </pluginRepository>
     </pluginRepositories>
 
 </project>