You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by mc...@apache.org on 2008/02/10 18:37:55 UTC

svn commit: r620296 - in /felix/trunk: org.osgi.service.obr/pom.xml pom/pom.xml

Author: mcculls
Date: Sun Feb 10 09:37:50 2008
New Revision: 620296

URL: http://svn.apache.org/viewvc?rev=620296&view=rev
Log:
Build org.osgi.service.obr as a bundle, now that version 1.0.1 is released

Modified:
    felix/trunk/org.osgi.service.obr/pom.xml
    felix/trunk/pom/pom.xml

Modified: felix/trunk/org.osgi.service.obr/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/org.osgi.service.obr/pom.xml?rev=620296&r1=620295&r2=620296&view=diff
==============================================================================
--- felix/trunk/org.osgi.service.obr/pom.xml (original)
+++ felix/trunk/org.osgi.service.obr/pom.xml Sun Feb 10 09:37:50 2008
@@ -32,7 +32,7 @@
   <description>OSGi OBR Service API</description>
   <artifactId>org.osgi.service.obr</artifactId>
   <version>1.1.0-SNAPSHOT</version>
-  <packaging>jar</packaging>
+  <packaging>bundle</packaging>
   <dependencies>
     <dependency>
       <groupId>org.apache.felix</groupId>
@@ -40,4 +40,24 @@
       <version>1.0.0</version>
     </dependency>
   </dependencies>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <version>1.2.0</version>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+            <Export-Package>${pom.artifactId}</Export-Package>
+            <Import-Package>org.osgi.framework;version="[1.3,2)",*</Import-Package>
+            <Bundle-Version>1</Bundle-Version>
+            <Bundle-Copyright>Copyright (c) OSGi Alliance (2000, 2008). All Rights Reserved.</Bundle-Copyright>
+            <Bundle-Category>osgi</Bundle-Category>
+          </instructions>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 </project>

Modified: felix/trunk/pom/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/pom/pom.xml?rev=620296&r1=620295&r2=620296&view=diff
==============================================================================
--- felix/trunk/pom/pom.xml (original)
+++ felix/trunk/pom/pom.xml Sun Feb 10 09:37:50 2008
@@ -94,7 +94,6 @@
         </property>
       </activation>
       <modules>
-        <module>../org.osgi.service.obr</module>
         <module>../maven-obr-plugin</module>
         <module>../bundleplugin</module>
         <module>../scrplugin</module>
@@ -443,4 +442,4 @@
       </plugin-->
     </plugins>
   </reporting>
-</project>
\ No newline at end of file
+</project>