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

git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1368045 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jean-Baptiste Onofre 2012-08-01 15:12:33 +00:00
parent 6859fa4061
commit cc56a3b741
1 changed files with 27 additions and 2 deletions

View File

@ -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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.archiva.redback</groupId>
<artifactId>redback-users-providers</artifactId>
<version>2.0-SNAPSHOT</version>
</parent>
<artifactId>redback-users-jdo</artifactId>
<packaging>jar</packaging>
<name>Redback :: Users Provider :: JDO</name>
<dependencies>
@ -90,12 +94,32 @@
<artifactId>slf4j-simple</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.modello</groupId>
<artifactId>modello-maven-plugin</artifactId>
@ -139,4 +163,5 @@
</plugin>
</plugins>
</build>
</project>