[MRM-1651] Add OSGi support to redback-common-jdo

git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1367588 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jean-Baptiste Onofre 2012-07-31 14:50:35 +00:00
parent 8b0de7eeaf
commit 42e0ef0316
1 changed files with 15 additions and 1 deletions

View File

@ -18,15 +18,19 @@
~ under the License. ~ 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"> <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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.apache.archiva.redback</groupId> <groupId>org.apache.archiva.redback</groupId>
<artifactId>redback-common</artifactId> <artifactId>redback-common</artifactId>
<version>2.0-SNAPSHOT</version> <version>2.0-SNAPSHOT</version>
</parent> </parent>
<artifactId>redback-common-jdo</artifactId> <artifactId>redback-common-jdo</artifactId>
<packaging>bundle</packaging>
<name>Redback :: JDO Common API</name> <name>Redback :: JDO Common API</name>
<packaging>jar</packaging>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.apache.archiva.redback.components</groupId> <groupId>org.apache.archiva.redback.components</groupId>
@ -80,4 +84,14 @@
<artifactId>commons-lang</artifactId> <artifactId>commons-lang</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
</plugin>
</plugins>
</build>
</project> </project>