You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2011/01/13 21:26:00 UTC

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

Author: akarasulu
Date: Thu Jan 13 20:26:00 2011
New Revision: 1058734

URL: http://svn.apache.org/viewvc?rev=1058734&view=rev
Log:
For testing purposes with Studio build made i18n into a bundle

Modified:
    directory/shared/trunk/i18n/pom.xml

Modified: directory/shared/trunk/i18n/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/i18n/pom.xml?rev=1058734&r1=1058733&r2=1058734&view=diff
==============================================================================
--- directory/shared/trunk/i18n/pom.xml (original)
+++ directory/shared/trunk/i18n/pom.xml Thu Jan 13 20:26:00 2011
@@ -27,7 +27,7 @@
   
   <artifactId>shared-i18n</artifactId>
   <name>Apache Directory Shared I18n</name>
-  
+  <packaging>bundle</packaging> 
   <description>Internationalization of errors and other messages</description>
 
   <build>
@@ -39,6 +39,21 @@
           <forkMode>always</forkMode>
         </configuration>
       </plugin>
+
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <inherited>true</inherited>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Bundle-SymbolicName>${pom.groupId}.${pom.artifactId}</Bundle-SymbolicName>
+            <Bundle-Name>${pom.artifactId}</Bundle-Name>
+            <Bundle-Version>${pom.version}</Bundle-Version>
+            <Export-Package>org.apache.directory.shared.i18n</Export-Package>
+          </instructions>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 </project>