You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by pa...@apache.org on 2011/01/14 14:53:24 UTC

svn commit: r1059009 - in /directory/shared/trunk/i18n: ./ pom.xml

Author: pamarcelot
Date: Fri Jan 14 13:53:23 2011
New Revision: 1059009

URL: http://svn.apache.org/viewvc?rev=1059009&view=rev
Log:
Adjustments for the OSGI-fication of the Shared i18n module.

Modified:
    directory/shared/trunk/i18n/   (props changed)
    directory/shared/trunk/i18n/pom.xml

Propchange: directory/shared/trunk/i18n/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Fri Jan 14 13:53:23 2011
@@ -3,3 +3,4 @@
 .project
 .settings
 target
+META-INF

Modified: directory/shared/trunk/i18n/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/i18n/pom.xml?rev=1059009&r1=1059008&r2=1059009&view=diff
==============================================================================
--- directory/shared/trunk/i18n/pom.xml (original)
+++ directory/shared/trunk/i18n/pom.xml Fri Jan 14 13:53:23 2011
@@ -41,15 +41,26 @@
       </plugin>
 
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifestFile>META-INF/MANIFEST.MF</manifestFile>
+            <addMavenDescriptor>false</addMavenDescriptor>
+          </archive>
+        </configuration>
+      </plugin>
+
+      <plugin>
         <groupId>org.apache.felix</groupId>
         <artifactId>maven-bundle-plugin</artifactId>
         <inherited>true</inherited>
         <extensions>true</extensions>
         <configuration>
+          <manifestLocation>META-INF</manifestLocation>
           <instructions>
-            <Bundle-SymbolicName>${pom.groupId}.${pom.artifactId}</Bundle-SymbolicName>
-            <Bundle-Name>${pom.artifactId}</Bundle-Name>
-            <Bundle-Version>${pom.version}</Bundle-Version>
+            <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
+            <Bundle-Name>${project.name}</Bundle-Name>
             <Export-Package>org.apache.directory.shared.i18n</Export-Package>
           </instructions>
         </configuration>