Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Bricon2013-05-15 11:43:12 +0000
committerFred Bricon2013-05-15 11:43:12 +0000
commit30d6c33ba3b978ebe44dfe0be7dca305fd32552a (patch)
tree42333aa8caa345b288ed75bf2c80bcd512edd547
parent8fdd1de5cf50a068e4439a489b2e40e5021aad79 (diff)
downloadm2e-core-30d6c33ba3b978ebe44dfe0be7dca305fd32552a.tar.gz
m2e-core-30d6c33ba3b978ebe44dfe0be7dca305fd32552a.tar.xz
m2e-core-30d6c33ba3b978ebe44dfe0be7dca305fd32552a.zip
407983 : quote maven bootclasspath
Signed-off-by: Fred Bricon <fbricon@gmail.com>
-rw-r--r--org.eclipse.m2e.launching/src/org/eclipse/m2e/internal/launch/MavenRuntimeLaunchSupport.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.m2e.launching/src/org/eclipse/m2e/internal/launch/MavenRuntimeLaunchSupport.java b/org.eclipse.m2e.launching/src/org/eclipse/m2e/internal/launch/MavenRuntimeLaunchSupport.java
index b2f5fcbf..546caa2f 100644
--- a/org.eclipse.m2e.launching/src/org/eclipse/m2e/internal/launch/MavenRuntimeLaunchSupport.java
+++ b/org.eclipse.m2e.launching/src/org/eclipse/m2e/internal/launch/MavenRuntimeLaunchSupport.java
@@ -191,7 +191,7 @@ public class MavenRuntimeLaunchSupport {
// maven bootclasspath, i.e. classworlds jar.
// TODO only used by ITs, so consider making optional
- properties.appendProperty("maven.bootclasspath", MavenLaunchUtils.toPath(getBootClasspath()));
+ properties.appendProperty("maven.bootclasspath", quote(MavenLaunchUtils.toPath(getBootClasspath())));
return properties;
}

Back to the top