Author: jbonofre
Date: Thu Aug 2 06:56:49 2012
New Revision: 1368367
URL: http://svn.apache.org/viewvc?rev=1368367&view=rev
Log:
[MRM-1651] Add OSGi support to spring-jdo2
Modified:
archiva/redback/redback-components/trunk/spring-jdo2/pom.xml
Modified: archiva/redback/redback-components/trunk/spring-jdo2/pom.xml
URL:
http://svn.apache.org/viewvc/archiva/redback/redback-components/trunk/spring-jdo2/pom.xml?rev=1368367&r1=1368366&r2=1368367&view=diff
==============================================================================
--- archiva/redback/redback-components/trunk/spring-jdo2/pom.xml (original)
+++ archiva/redback/redback-components/trunk/spring-jdo2/pom.xml Thu Aug 2
06:56:49 2012
@@ -18,17 +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.components</groupId>
<artifactId>redback-components</artifactId>
<version>2.0-SNAPSHOT</version>
<relativePath>../redback-components-parent/pom.xml</relativePath>
</parent>
- <modelVersion>4.0.0</modelVersion>
+
<artifactId>spring-jdo2</artifactId>
+ <packaging>bundle</packaging>
<name>Spring JDO2 Component</name>
- <version>2.0-SNAPSHOT</version>
- <inceptionYear>2005</inceptionYear>
<url>http://archiva.apache.org/redback/components/${project.artifactId}</url>
@@ -144,6 +146,10 @@
<build>
<plugins>
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ </plugin>
<!-- I Couldn't get the test classes to generate from modello.
So I just placed the pre-generated classes into the src/test/* tree
instead.
I left this configuration in here to allow others to possibly get
this
@@ -202,4 +208,5 @@
</plugin>
</plugins>
</build>
+
</project>