You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by pa...@apache.org on 2009/10/02 17:52:44 UTC

svn commit: r821067 - /felix/trunk/main/pom.xml

Author: pauls
Date: Fri Oct  2 15:52:43 2009
New Revision: 821067

URL: http://svn.apache.org/viewvc?rev=821067&view=rev
Log:
Exclude not neccessary osgi classes from the main felix.jar

Modified:
    felix/trunk/main/pom.xml

Modified: felix/trunk/main/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/main/pom.xml?rev=821067&r1=821066&r2=821067&view=diff
==============================================================================
--- felix/trunk/main/pom.xml (original)
+++ felix/trunk/main/pom.xml Fri Oct  2 15:52:43 2009
@@ -65,11 +65,11 @@
       <version>1.5.0-SNAPSHOT</version>
       <exclusions>
         <exclusion>
-          <groupId>${pom.groupId}</groupId>
+          <groupId>org.osgi</groupId>
           <artifactId>org.osgi.core</artifactId>
         </exclusion>
         <exclusion>
-          <groupId>${pom.groupId}</groupId>
+          <groupId>org.osgi</groupId>
           <artifactId>org.osgi.compendium</artifactId>
         </exclusion>
       </exclusions>
@@ -124,7 +124,7 @@
       <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
-        <version>1.4.3</version>
+        <version>2.0.0</version>
         <extensions>true</extensions>
         <configuration>
           <instructions>
@@ -136,7 +136,7 @@
             <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
             <Embed-Dependency>*;artifactId=org.apache.felix.framework;inline=true</Embed-Dependency>
             <Private-Package>org.apache.felix.main.*</Private-Package>
-            <Export-Package>!org.osgi.service.obr,org.osgi.*</Export-Package>
+            <Export-Package>!org.osgi.service.log, !org.osgi.service.obr,org.osgi.*</Export-Package>
             <Import-Package>!*</Import-Package>
             <Include-Resource>META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE,{src/main/resources/}</Include-Resource>
           </instructions>