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/14 21:04:05 UTC

svn commit: r1059149 - in /directory/shared/trunk: ldap/pom.xml pom.xml

Author: akarasulu
Date: Fri Jan 14 20:04:05 2011
New Revision: 1059149

URL: http://svn.apache.org/viewvc?rev=1059149&view=rev
Log:
update pom.xml to module in tests: should make this only the case for integration profile later

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

Modified: directory/shared/trunk/ldap/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/pom.xml?rev=1059149&r1=1059148&r2=1059149&view=diff
==============================================================================
--- directory/shared/trunk/ldap/pom.xml (original)
+++ directory/shared/trunk/ldap/pom.xml Fri Jan 14 20:04:05 2011
@@ -27,7 +27,7 @@
   
   <artifactId>shared-ldap</artifactId>
   <name>Apache Directory Shared LDAP</name>
-
+  <packaging>bundle</packaging>
   <description>Common LDAP packages used by clients and servers</description>
 
   <dependencies>
@@ -103,6 +103,21 @@
           </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}.${pom.artifactId}</Bundle-SymbolicName>
+            <Bundle-Name>${pom.artifactId}</Bundle-Name>
+            <Bundle-Version>${pom.version}</Bundle-Version>
+            <Export-Package>org.apache.directory.shared.ldap.*</Export-Package>
+          </instructions>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 </project>

Modified: directory/shared/trunk/pom.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/pom.xml?rev=1059149&r1=1059148&r2=1059149&view=diff
==============================================================================
--- directory/shared/trunk/pom.xml (original)
+++ directory/shared/trunk/pom.xml Fri Jan 14 20:04:05 2011
@@ -70,6 +70,7 @@
   </issueManagement>
 
   <modules>
+    <module>integ</module>
     <module>i18n</module>
     <module>all</module>
     <module>ldap</module>