You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2006/08/15 17:36:25 UTC

svn commit: r431620 - /incubator/servicemix/trunk/tooling/jbi-maven-plugin/src/main/java/org/apache/servicemix/maven/plugin/jbi/ServiceMixEmbeddedMojo.java

Author: gnodet
Date: Tue Aug 15 08:36:24 2006
New Revision: 431620

URL: http://svn.apache.org/viewvc?rev=431620&view=rev
Log:
Fix the jbi:embeddedServicemix goal on unixes

Modified:
    incubator/servicemix/trunk/tooling/jbi-maven-plugin/src/main/java/org/apache/servicemix/maven/plugin/jbi/ServiceMixEmbeddedMojo.java

Modified: incubator/servicemix/trunk/tooling/jbi-maven-plugin/src/main/java/org/apache/servicemix/maven/plugin/jbi/ServiceMixEmbeddedMojo.java
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/tooling/jbi-maven-plugin/src/main/java/org/apache/servicemix/maven/plugin/jbi/ServiceMixEmbeddedMojo.java?rev=431620&r1=431619&r2=431620&view=diff
==============================================================================
--- incubator/servicemix/trunk/tooling/jbi-maven-plugin/src/main/java/org/apache/servicemix/maven/plugin/jbi/ServiceMixEmbeddedMojo.java (original)
+++ incubator/servicemix/trunk/tooling/jbi-maven-plugin/src/main/java/org/apache/servicemix/maven/plugin/jbi/ServiceMixEmbeddedMojo.java Tue Aug 15 08:36:24 2006
@@ -85,7 +85,7 @@
         ClassLoader old = Thread.currentThread().getContextClassLoader();
 		try {
             Thread.currentThread().setContextClassLoader(getClassLoader());
-			context = new FileSystemXmlApplicationContext(servicemixConfig
+			context = new FileSystemXmlApplicationContext("file:///" + servicemixConfig
 					.getAbsolutePath());
 			container = (SpringJBIContainer) context.getBean("jbi");
 		} catch (Exception e) {