diff options
-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> |