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-shell-1.4.2.orig/pom.xml
+++ felix-shell-1.4.2/pom.xml
@@ -23,7 +23,7 @@
<version>1.2.0</version>
<relativePath>../pom/pom.xml</relativePath> </parent>
<modelVersion>4.0.0</modelVersion>
- <packaging>bundle</packaging>
+ <packaging>jar</packaging>
<name>Apache Felix Shell Service</name>
<description>A simple OSGi command shell service.</description>
<artifactId>org.apache.felix.shell</artifactId>
|