From 534ba30335b7f177365f621f4c896cd4651879eb Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Thu, 4 Jun 2015 09:34:00 -0400 Subject: [PATCH] resource path change to enable java -jar launching --- .../xd/bootstrap/ModuleOptionsPropertySourceInitializer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-xd-runner/src/main/java/org/springframework/bus/xd/bootstrap/ModuleOptionsPropertySourceInitializer.java b/spring-xd-runner/src/main/java/org/springframework/bus/xd/bootstrap/ModuleOptionsPropertySourceInitializer.java index 8e862a8c6..28ffe3f53 100644 --- a/spring-xd-runner/src/main/java/org/springframework/bus/xd/bootstrap/ModuleOptionsPropertySourceInitializer.java +++ b/spring-xd-runner/src/main/java/org/springframework/bus/xd/bootstrap/ModuleOptionsPropertySourceInitializer.java @@ -78,7 +78,7 @@ public class ModuleOptionsPropertySourceInitializer implements private ModuleDefinition getModuleDefinition() { return ModuleDefinitions.simple(module.getName(), - ModuleType.valueOf(module.getType()), "classpath:"); + ModuleType.valueOf(module.getType()), "file:."); } private void insert(ConfigurableEnvironment environment, MapPropertySource source) {