Author: jbonofre
Date: Wed Aug 1 15:55:22 2012
New Revision: 1368076
URL: http://svn.apache.org/viewvc?rev=1368076&view=rev
Log:
[MRM-1651] Add OSGi support to redback-authentication-users
Modified:
archiva/redback/redback-core/trunk/redback-users/redback-authentication-users/pom.xml
Modified:
archiva/redback/redback-core/trunk/redback-users/redback-authentication-users/pom.xml
URL:
http://svn.apache.org/viewvc/archiva/redback/redback-core/trunk/redback-users/redback-authentication-users/pom.xml?rev=1368076&r1=1368075&r2=1368076&view=diff
==============================================================================
---
archiva/redback/redback-core/trunk/redback-users/redback-authentication-users/pom.xml
(original)
+++
archiva/redback/redback-core/trunk/redback-users/redback-authentication-users/pom.xml
Wed Aug 1 15:55:22 2012
@@ -18,15 +18,20 @@
~ 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>
<relativePath>../../redback-authentication/redback-authentication-providers/pom.xml</relativePath>
</parent>
+
<artifactId>redback-authentication-users</artifactId>
+ <packaging>bundle</packaging>
<name>Redback :: Authentication Provider :: Users</name>
+
<dependencies>
<dependency>
<groupId>org.apache.archiva.redback</groupId>
@@ -63,4 +68,14 @@
<scope>test</scope>
</dependency>
</dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+
</project>