diff options
author | Jean-Baptiste Onofre <jbonofre@apache.org> | 2012-08-01 16:02:30 +0000 |
---|---|---|
committer | Jean-Baptiste Onofre <jbonofre@apache.org> | 2012-08-01 16:02:30 +0000 |
commit | 657785aa0122007a6a6a4aba5df721decd736ac7 (patch) | |
tree | 5b918e24d4b17a61599bb8876950f654cb9de64f | |
parent | 64477948c41eb89ba6aa6b8da58064949ac04040 (diff) | |
download | archiva-657785aa0122007a6a6a4aba5df721decd736ac7.tar.gz archiva-657785aa0122007a6a6a4aba5df721decd736ac7.zip |
[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
-rw-r--r-- | redback-integrations/redback-common-integrations/pom.xml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/redback-integrations/redback-common-integrations/pom.xml b/redback-integrations/redback-common-integrations/pom.xml index af440db67..ab168ba70 100644 --- a/redback-integrations/redback-common-integrations/pom.xml +++ b/redback-integrations/redback-common-integrations/pom.xml @@ -18,15 +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</groupId> <artifactId>redback-integrations</artifactId> <version>2.0-SNAPSHOT</version> </parent> + <artifactId>redback-common-integrations</artifactId> + <packaging>bundle</packaging> <name>Redback :: Integration :: Common</name> - <packaging>jar</packaging> + <dependencies> <!-- ================================================================ --> <!-- Core Plexus Security Dependencies --> @@ -199,9 +203,14 @@ <scope>test</scope> </dependency> </dependencies> + <build> <plugins> <plugin> + <groupId>org.apache.felix</groupId> + <artifactId>maven-bundle-plugin</artifactId> + </plugin> + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> @@ -213,4 +222,5 @@ </plugin> </plugins> </build> + </project> |