Fix the packaging of the test bundle when the directory contains a space

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1576356 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/ipojo/manipulator/manipulator-it/online-manipulator-it/src/main/java/org/apache/felix/ipojo/test/online/module/TypeModule.java b/ipojo/manipulator/manipulator-it/online-manipulator-it/src/main/java/org/apache/felix/ipojo/test/online/module/TypeModule.java
index 43db0db..877d163 100644
--- a/ipojo/manipulator/manipulator-it/online-manipulator-it/src/main/java/org/apache/felix/ipojo/test/online/module/TypeModule.java
+++ b/ipojo/manipulator/manipulator-it/online-manipulator-it/src/main/java/org/apache/felix/ipojo/test/online/module/TypeModule.java
@@ -39,7 +39,7 @@
                 .with(new ComponentLiteral());
     }
 
-    private static class ComponentLiteral extends AnnotationLiteral<Component> implements Component {
+    public static class ComponentLiteral extends AnnotationLiteral<Component> implements Component {
 
         public boolean public_factory() {
             return true;
diff --git a/ipojo/manipulator/manipulator-it/online-manipulator-it/src/test/java/org/apache/felix/ipojo/test/online/OnlineManipulatorTest.java b/ipojo/manipulator/manipulator-it/online-manipulator-it/src/test/java/org/apache/felix/ipojo/test/online/OnlineManipulatorTest.java
index 474ccc4..63b9ebc 100644
--- a/ipojo/manipulator/manipulator-it/online-manipulator-it/src/test/java/org/apache/felix/ipojo/test/online/OnlineManipulatorTest.java
+++ b/ipojo/manipulator/manipulator-it/online-manipulator-it/src/test/java/org/apache/felix/ipojo/test/online/OnlineManipulatorTest.java
@@ -46,6 +46,7 @@
 import org.ops4j.pax.exam.junit.PaxExam;
 import org.ops4j.pax.exam.spi.reactors.ExamReactorStrategy;
 import org.ops4j.pax.exam.spi.reactors.PerClass;
+import org.ops4j.pax.tinybundles.core.InnerClassStrategy;
 import org.ops4j.pax.tinybundles.core.TinyBundles;
 import org.osgi.framework.*;
 import org.osgi.service.url.URLStreamHandlerService;
@@ -122,7 +123,8 @@
                 .add(Activator.class)
                 .add(Type.class)
                 .add(Type2.class)
-                .add(TypeModule.class)
+                .add(TypeModule.class, InnerClassStrategy.ALL)
+                .add(TypeModule.ComponentLiteral.class)
                 .set(Constants.BUNDLE_ACTIVATOR, Activator.class.getName())
                 .set(Constants.BUNDLE_SYMBOLICNAME, "Manipulator Module")
                 .set(Constants.IMPORT_PACKAGE,