diff options
author | Jean-Baptiste Onofre <jbonofre@apache.org> | 2012-07-31 14:09:41 +0000 |
---|---|---|
committer | Jean-Baptiste Onofre <jbonofre@apache.org> | 2012-07-31 14:09:41 +0000 |
commit | ecc8041b85111c5afb29a5b29d807c7c1c342dad (patch) | |
tree | 0dbb7d2d54fe9b3c6e9f5f44b775df0d43e8f4d8 /redback-authentication | |
parent | 9b80611a662b3dd011f725e34cfc07c2e5bff9ae (diff) | |
download | archiva-ecc8041b85111c5afb29a5b29d807c7c1c342dad.tar.gz archiva-ecc8041b85111c5afb29a5b29d807c7c1c342dad.zip |
[MRM-1651] Add OSGi support to redback-authentication-ldap
git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1367563 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'redback-authentication')
-rw-r--r-- | redback-authentication/redback-authentication-providers/redback-authentication-ldap/pom.xml | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/redback-authentication/redback-authentication-providers/redback-authentication-ldap/pom.xml b/redback-authentication/redback-authentication-providers/redback-authentication-ldap/pom.xml index 47988a1f7..a187e9987 100644 --- a/redback-authentication/redback-authentication-providers/redback-authentication-ldap/pom.xml +++ b/redback-authentication/redback-authentication-providers/redback-authentication-ldap/pom.xml @@ -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> |