You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by jb...@apache.org on 2012/07/31 16:09:42 UTC

svn commit: r1367563 - /archiva/redback/redback-core/trunk/redback-authentication/redback-authentication-providers/redback-authentication-ldap/pom.xml

Author: jbonofre
Date: Tue Jul 31 14:09:41 2012
New Revision: 1367563

URL: http://svn.apache.org/viewvc?rev=1367563&view=rev
Log:
[MRM-1651] Add OSGi support to redback-authentication-ldap

Modified:
    archiva/redback/redback-core/trunk/redback-authentication/redback-authentication-providers/redback-authentication-ldap/pom.xml

Modified: archiva/redback/redback-core/trunk/redback-authentication/redback-authentication-providers/redback-authentication-ldap/pom.xml
URL: http://svn.apache.org/viewvc/archiva/redback/redback-core/trunk/redback-authentication/redback-authentication-providers/redback-authentication-ldap/pom.xml?rev=1367563&r1=1367562&r2=1367563&view=diff
==============================================================================
--- archiva/redback/redback-core/trunk/redback-authentication/redback-authentication-providers/redback-authentication-ldap/pom.xml (original)
+++ archiva/redback/redback-core/trunk/redback-authentication/redback-authentication-providers/redback-authentication-ldap/pom.xml Tue Jul 31 14:09:41 2012
@@ -18,17 +18,23 @@
   ~ under the License.
   -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
   <modelVersion>4.0.0</modelVersion>
+
   <parent>
     <groupId>org.apache.archiva.redback</groupId>
     <artifactId>redback-authentication-providers</artifactId>
     <version>2.0-SNAPSHOT</version>
   </parent>
+
   <artifactId>redback-authentication-ldap</artifactId>
+  <packaging>bundle</packaging>
   <name>Redback :: Authentication Provider :: Ldap</name>
+
   <properties>
     <apacheds.version>1.5.1</apacheds.version>
   </properties>
+
   <dependencies>
     <dependency>
       <groupId>org.apache.archiva.redback</groupId>
@@ -83,10 +89,20 @@
 
   </dependencies>
 
-
   <build>
     <plugins>
       <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <configuration>
+          <instructions>
+            <Export-Package>
+              org.apache.archiva.redback.authentication.ldap
+            </Export-Package>
+          </instructions>
+        </configuration>
+      </plugin>
+      <plugin>
         <groupId>org.sonatype.plugins</groupId>
         <artifactId>port-allocator-maven-plugin</artifactId>
         <version>1.1</version>
@@ -120,4 +136,5 @@
       </plugin>
     </plugins>
   </build>
+
 </project>