Author: jbonofre
Date: Wed Aug 1 20:20:14 2012
New Revision: 1368236
URL: http://svn.apache.org/viewvc?rev=1368236&view=rev
Log:
[MRM-1651] Add OSGi support to spring-cache-hashmap
Modified:
archiva/redback/redback-components/trunk/spring-cache/spring-cache-providers/spring-cache-hashmap/pom.xml
Modified:
archiva/redback/redback-components/trunk/spring-cache/spring-cache-providers/spring-cache-hashmap/pom.xml
URL:
http://svn.apache.org/viewvc/archiva/redback/redback-components/trunk/spring-cache/spring-cache-providers/spring-cache-hashmap/pom.xml?rev=1368236&r1=1368235&r2=1368236&view=diff
==============================================================================
---
archiva/redback/redback-components/trunk/spring-cache/spring-cache-providers/spring-cache-hashmap/pom.xml
(original)
+++
archiva/redback/redback-components/trunk/spring-cache/spring-cache-providers/spring-cache-hashmap/pom.xml
Wed Aug 1 20:20:14 2012
@@ -18,7 +18,9 @@
~ 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.components.cache</groupId>
<artifactId>spring-cache-providers</artifactId>
@@ -26,12 +28,18 @@
</parent>
<artifactId>spring-cache-hashmap</artifactId>
+ <packaging>bundle</packaging>
<name>Spring Cache Provider :: hashmap</name>
<description>Commons Cache API : simple in memory HashMap
implementation.</description>
- <packaging>jar</packaging>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
- <dependencies>
- </dependencies>
</project>