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:47:10 UTC

svn commit: r1058745 - in /directory/shared/branches/shared-AP/i18n: ./ pom.xml

Author: akarasulu
Date: Thu Jan 13 20:47:09 2011
New Revision: 1058745

URL: http://svn.apache.org/viewvc?rev=1058745&view=rev
Log:
Merge i18n change to OSGi bundle

Modified:
    directory/shared/branches/shared-AP/i18n/   (props changed)
    directory/shared/branches/shared-AP/i18n/pom.xml

Propchange: directory/shared/branches/shared-AP/i18n/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Thu Jan 13 20:47:09 2011
@@ -1,4 +1,6 @@
+/directory/shared/branches/shared-AP/i18n:1058734
 /directory/shared/branches/shared-codec-merge/i18n:982370-987558
 /directory/shared/branches/shared-config/i18n:1023444-1029061
 /directory/shared/branches/shared-dnfactory-experiment/i18n:980352-980933
 /directory/shared/branches-dnfactory-experiment/i18n:980350-980351
+/directory/shared/trunk/i18n:1058734

Modified: directory/shared/branches/shared-AP/i18n/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/branches/shared-AP/i18n/pom.xml?rev=1058745&r1=1058744&r2=1058745&view=diff
==============================================================================
--- directory/shared/branches/shared-AP/i18n/pom.xml (original)
+++ directory/shared/branches/shared-AP/i18n/pom.xml Thu Jan 13 20:47:09 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>