Fix build break (unfortunately when bamboo does the multi-module build, Maven uses the released 1.2.1 bundleplugin instead of the 1.3.0-SNAPSHOT requested in this pom.xml - when I release the 1.4.0 bundleplugin this change can be reverted)

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@629838 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/upnp/basedriver/pom.xml b/upnp/basedriver/pom.xml
index d5fdfb5..e2cc240 100644
--- a/upnp/basedriver/pom.xml
+++ b/upnp/basedriver/pom.xml
@@ -59,7 +59,10 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
+<!--
         <version>1.3.0-SNAPSHOT</version>
+-->
+        <version>1.2.1</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>
@@ -96,16 +99,16 @@
           </instructions>
 	  <excludeDependencies>upnp-stack-jdk13</excludeDependencies>
         </configuration>
+<!--
 	<executions>
 	  <execution>
 	    <id>jdk13</id>
 	    <goals><goal>bundle</goal></goals>
 	    <configuration>
 	      <classifier>jdk13</classifier>
-              <!--manifestLocation>${project.build.outputDirectory}/META-INF-jdk13</manifestLocation-->
+              <manifestLocation>${project.build.outputDirectory}/META-INF-jdk13</manifestLocation>
               <excludeDependencies>upnp-stack</excludeDependencies>
               <instructions>
-                <!--additionalPrivatePkgs>org.kxml2.io,org.xmlpull.v1</additionalPrivatePkgs-->
                 <Export-Package>
                   org.apache.felix.upnp.basedriver.controller;version=0.1.0,
                   org.apache.felix.upnp.basedriver.util;version=0.3.0,
@@ -124,6 +127,7 @@
 	    </configuration>
 	  </execution>
 	</executions>
+-->
       </plugin>      
     </plugins>
   </build>
@@ -147,11 +151,13 @@
       <version>1.8.0-SNAPSHOT</version>
       <optional>true</optional>
     </dependency>
+<!--
     <dependency>
       <groupId>it.cnr.isti.domoware.cyberdomo</groupId>
       <artifactId>upnp-stack-jdk13</artifactId>
       <version>1.8.0-SNAPSHOT</version>
       <optional>true</optional>
     </dependency>
+-->
   </dependencies>
 </project>