Author: jbonofre
Date: Tue Jul 31 14:25:50 2012
New Revision: 1367574
URL: http://svn.apache.org/viewvc?rev=1367574&view=rev
Log:
[MRM-1651] Add OSGi support in redback-authentication-memory
Modified:
archiva/redback/redback-core/trunk/redback-authentication/redback-authentication-providers/redback-authentication-memory/pom.xml
Modified:
archiva/redback/redback-core/trunk/redback-authentication/redback-authentication-providers/redback-authentication-memory/pom.xml
URL:
http://svn.apache.org/viewvc/archiva/redback/redback-core/trunk/redback-authentication/redback-authentication-providers/redback-authentication-memory/pom.xml?rev=1367574&r1=1367573&r2=1367574&view=diff
==============================================================================
---
archiva/redback/redback-core/trunk/redback-authentication/redback-authentication-providers/redback-authentication-memory/pom.xml
(original)
+++
archiva/redback/redback-core/trunk/redback-authentication/redback-authentication-providers/redback-authentication-memory/pom.xml
Tue Jul 31 14:25:50 2012
@@ -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>