summaryrefslogtreecommitdiffstats
path: root/redback-authentication
diff options
context:
space:
mode:
authorJean-Baptiste Onofre <jbonofre@apache.org>2012-07-31 14:25:50 +0000
committerJean-Baptiste Onofre <jbonofre@apache.org>2012-07-31 14:25:50 +0000
commitd5f68f0b4a1b23c76b4d91f1513c3b0bc46f157e (patch)
tree61b115bd285ec0dbc19c7a952960ed22283fb18a /redback-authentication
parent07f2a9ca4739751170174fd333fedd765f6f5132 (diff)
downloadarchiva-d5f68f0b4a1b23c76b4d91f1513c3b0bc46f157e.tar.gz
archiva-d5f68f0b4a1b23c76b4d91f1513c3b0bc46f157e.zip
[MRM-1651] Add OSGi support in redback-authentication-memory
git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1367574 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'redback-authentication')
-rw-r--r--redback-authentication/redback-authentication-providers/redback-authentication-memory/pom.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/redback-authentication/redback-authentication-providers/redback-authentication-memory/pom.xml b/redback-authentication/redback-authentication-providers/redback-authentication-memory/pom.xml
index b2ee54996..e1efeb784 100644
--- a/redback-authentication/redback-authentication-providers/redback-authentication-memory/pom.xml
+++ b/redback-authentication/redback-authentication-providers/redback-authentication-memory/pom.xml
@@ -18,14 +18,19 @@
~ 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-memory</artifactId>
+ <packaging>bundle</packaging>
<name>Redback :: Authentication Provider :: Memory</name>
+
<dependencies>
<dependency>
<groupId>org.apache.archiva.redback</groupId>
@@ -49,4 +54,14 @@
<scope>test</scope>
</dependency>
</dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+
</project>