Author: jbonofre
Date: Wed Aug 1 13:21:07 2012
New Revision: 1367980
URL: http://svn.apache.org/viewvc?rev=1367980&view=rev
Log:
[MRM-1651] Add OSGi support to redback-keys-api
Modified:
archiva/redback/redback-core/trunk/redback-keys/redback-keys-api/pom.xml
Modified: archiva/redback/redback-core/trunk/redback-keys/redback-keys-api/pom.xml
URL: http://svn.apache.org/viewvc/archiva/redback/redback-core/trunk/redback-keys/redback-keys-api/pom.xml?rev=1367980&r1=1367979&r2=1367980&view=diff
==============================================================================
--- archiva/redback/redback-core/trunk/redback-keys/redback-keys-api/pom.xml (original)
+++ archiva/redback/redback-core/trunk/redback-keys/redback-keys-api/pom.xml Wed Aug 1 13:21:07
2012
@@ -18,15 +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-keys</artifactId>
<version>2.0-SNAPSHOT</version>
</parent>
+
<artifactId>redback-keys-api</artifactId>
+ <packaging>bundle</packaging>
<name>Redback :: Key Management API</name>
- <packaging>jar</packaging>
+
<dependencies>
<dependency>
<groupId>org.codehaus.plexus</groupId>
@@ -53,4 +57,14 @@
<scope>test</scope>
</dependency>
</dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+
</project>
|