Author: jbonofre
Date: Wed Aug 1 16:52:59 2012
New Revision: 1368120
URL: http://svn.apache.org/viewvc?rev=1368120&view=rev
Log:
[MRM-1651] Add OSGi support to redback-rest-api
Modified:
archiva/redback/redback-core/trunk/redback-integrations/redback-rest/redback-rest-api/pom.xml
Modified:
archiva/redback/redback-core/trunk/redback-integrations/redback-rest/redback-rest-api/pom.xml
URL:
http://svn.apache.org/viewvc/archiva/redback/redback-core/trunk/redback-integrations/redback-rest/redback-rest-api/pom.xml?rev=1368120&r1=1368119&r2=1368120&view=diff
==============================================================================
---
archiva/redback/redback-core/trunk/redback-integrations/redback-rest/redback-rest-api/pom.xml
(original)
+++
archiva/redback/redback-core/trunk/redback-integrations/redback-rest/redback-rest-api/pom.xml
Wed Aug 1 16:52:59 2012
@@ -18,13 +18,17 @@
~ 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/xsd/maven-4.0.0.xsd">
+
<modelVersion>4.0.0</modelVersion>
+
<parent>
<artifactId>redback-rest</artifactId>
<groupId>org.apache.archiva.redback</groupId>
<version>2.0-SNAPSHOT</version>
</parent>
+
<artifactId>redback-rest-api</artifactId>
+ <packaging>bundle</packaging>
<name>Redback :: REST :: Api</name>
<dependencies>
@@ -60,6 +64,10 @@
<build>
<plugins>
<plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ </plugin>
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
@@ -73,4 +81,5 @@
</plugin>
</plugins>
</build>
+
</project>