1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: pom.xml, change packaging type from bundle to jar.
Since this library is a dependency of maven-bundle-plugin
we should use default "jar" packaging type to allow a first bootstrap build.
Forwarded: not-needed
Author: Damien Raude-Morvan <drazzib@debian.org>
Last-Update: 2011-04-29
--- felix-bundlerepository-1.6.4.orig/pom.xml
+++ felix-bundlerepository-1.6.4/pom.xml
@@ -24,7 +24,7 @@
<relativePath>../pom/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
- <packaging>bundle</packaging>
+ <packaging>jar</packaging>
<name>Apache Felix Bundle Repository</name>
<description>Bundle repository service.</description>
<artifactId>org.apache.felix.bundlerepository</artifactId>
|