summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--redback-integrations/redback-common-integrations/pom.xml12
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>