RE: Full build broken in master branch

2016-08-22 Thread Moon, John
It works now thanks. -Original Message- From: Claus Ibsen [mailto:claus.ib...@gmail.com] Sent: Friday, August 19, 2016 4:53 AM To: dev Subject: Re: Full build broken in master branch I pushed a fix because our CI server has the same problem so it cannot do a build https

Re: Full build broken in master branch

2016-08-19 Thread Claus Ibsen
I pushed a fix because our CI server has the same problem so it cannot do a build https://github.com/apache/camel/commit/db1d9eb701b9fe8a93b5fd376d79ad5659912e47 Can you try with latest code again ? On Fri, Aug 19, 2016 at 8:21 AM, Claus Ibsen wrote: > Hi > > You are welcome to log a JIRA / prov

Re: Full build broken in master branch

2016-08-18 Thread Claus Ibsen
Hi You are welcome to log a JIRA / provide a patch / github PR to correct this http://camel.apache.org/contributing On Thu, Aug 18, 2016 at 9:15 PM, Moon, John wrote: > Found the issue, you assume the parent folder is named "camel" in > SpringBootHelper.java (line 53). > > public static File c

RE: Full build broken in master branch

2016-08-18 Thread Moon, John
Found the issue, you assume the parent folder is named "camel" in SpringBootHelper.java (line 53). public static File camelProjectRoot(File baseDir) { try { File root = baseDir.getCanonicalFile(); while (root != null && !root.getName().equals("camel")) {