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/16 12:14:04 UTC

svn commit: r1059533 - /directory/shared/branches/shared-AP/ldap-client-api/pom.xml

Author: akarasulu
Date: Sun Jan 16 11:14:04 2011
New Revision: 1059533

URL: http://svn.apache.org/viewvc?rev=1059533&view=rev
Log:
making ldap-client-api into bundle

Modified:
    directory/shared/branches/shared-AP/ldap-client-api/pom.xml

Modified: directory/shared/branches/shared-AP/ldap-client-api/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/branches/shared-AP/ldap-client-api/pom.xml?rev=1059533&r1=1059532&r2=1059533&view=diff
==============================================================================
--- directory/shared/branches/shared-AP/ldap-client-api/pom.xml (original)
+++ directory/shared/branches/shared-AP/ldap-client-api/pom.xml Sun Jan 16 11:14:04 2011
@@ -29,6 +29,7 @@
 
   <artifactId>ldap-client-api</artifactId>
   <name>Apache Directory LDAP Client API</name>
+  <packaging>bundle</packaging>
   <inceptionYear>2009</inceptionYear>
 
   <issueManagement>
@@ -88,6 +89,29 @@
           </excludes>
         </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}.ldap.client
+            </Bundle-SymbolicName>
+            <Bundle-Name>${pom.artifactId}</Bundle-Name>
+            <Bundle-Version>${pom.version}</Bundle-Version>
+            <Export-Package>
+              org.apache.directory.shared.ldap.client.api,
+              org.apache.directory.shared.ldap.client.api.future,
+              org.apache.directory.shared.ldap.client.api.exception,
+              org.apache.directory.shared.ldap.client.api.callback,
+              org.apache.directory.shared.ldap.client.api.protocol
+            </Export-Package>
+          </instructions>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 </project>