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

git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1368086 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jean-Baptiste Onofre 2012-08-01 16:02:30 +00:00
parent 64477948c4
commit 657785aa01
1 changed files with 11 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-integrations</artifactId> <artifactId>redback-integrations</artifactId>
<version>2.0-SNAPSHOT</version> <version>2.0-SNAPSHOT</version>
</parent> </parent>
<artifactId>redback-common-integrations</artifactId> <artifactId>redback-common-integrations</artifactId>
<packaging>bundle</packaging>
<name>Redback :: Integration :: Common</name> <name>Redback :: Integration :: Common</name>
<packaging>jar</packaging>
<dependencies> <dependencies>
<!-- ================================================================ --> <!-- ================================================================ -->
<!-- Core Plexus Security Dependencies --> <!-- Core Plexus Security Dependencies -->
@ -199,8 +203,13 @@
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
</plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
@ -213,4 +222,5 @@
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
</project> </project>