You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openjpa.apache.org by dw...@apache.org on 2009/10/19 15:24:29 UTC

svn commit: r826665 - /openjpa/trunk/openjpa-integration/osgi-itests/pom.xml

Author: dwoods
Date: Mon Oct 19 13:24:29 2009
New Revision: 826665

URL: http://svn.apache.org/viewvc?rev=826665&view=rev
Log:
OPENJPA-1101 bundle metadata tweaks for osgi tests

Modified:
    openjpa/trunk/openjpa-integration/osgi-itests/pom.xml

Modified: openjpa/trunk/openjpa-integration/osgi-itests/pom.xml
URL: http://svn.apache.org/viewvc/openjpa/trunk/openjpa-integration/osgi-itests/pom.xml?rev=826665&r1=826664&r2=826665&view=diff
==============================================================================
--- openjpa/trunk/openjpa-integration/osgi-itests/pom.xml (original)
+++ openjpa/trunk/openjpa-integration/osgi-itests/pom.xml Mon Oct 19 13:24:29 2009
@@ -260,7 +260,7 @@
                     </archive>
                 </configuration>
             </plugin>
-<!--
+
             <plugin>
                 <groupId>org.apache.servicemix.tooling</groupId>
                 <artifactId>depends-maven-plugin</artifactId>
@@ -274,7 +274,7 @@
                     </execution>
                 </executions>
             </plugin>
--->
+
             <plugin>
                 <groupId>org.apache.felix</groupId>
                 <artifactId>maven-bundle-plugin</artifactId>
@@ -284,13 +284,13 @@
                         <Bundle-Name>${artifactId}</Bundle-Name>
                         <Bundle-SymbolicName>${groupId}.${artifactId};singleton=true</Bundle-SymbolicName>
                         <Bundle-DocURL>http://openjpa.apache.org/documentation.html</Bundle-DocURL>
-                        <!-- OSGi Bundle Metadata -->
-                        <Private-Package>hellojpa*,META-INF*</Private-Package>
-                        <Export-Package></Export-Package>
                         <Bundle-Activator>hellojpa.Main</Bundle-Activator>
+                        <!-- <Private-Package>hellojpa*,META-INF*</Private-Package> -->
+                        <Import-Package>org.apache.openjpa.*,*</Import-Package>
+                        <!-- <Export-Package></Export-Package> -->
+                        <Require-Bundle>org.apache.openjpa.openjpa;bundle-version="[1.3.0,3.0.0)"</Require-Bundle>
                         <!-- Eclipse metadata -->
                         <Eclipse-Autostart>false</Eclipse-Autostart>
-                        <Bundle-ClassPath>.</Bundle-ClassPath>
                     </instructions>
                     <unpackBundle>true</unpackBundle>
                 </configuration>