FELIX-403: replace line-breaks with spaces when using Maven project description in Bundle manifest

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@586862 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java b/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java
index 1a20ad7..a93b66d 100644
--- a/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java
+++ b/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java
@@ -478,7 +478,7 @@
         if (value instanceof Collection && ((Collection) value).isEmpty())
             return;
 
-        properties.put(key, value.toString());
+        properties.put(key, value.toString().replaceAll("[\r\n]", " "));
     }
 
     /**