RE: Re: Running Camel Main from Eclipse

2022-01-19 Thread Peter Lundin Q
Ah, found it. I had the camel-grpc 3.14 maven project imported in the workspace also. When I closed the project it works as expected. Could be a resolver problem when Eclipse add the project dependency as a workspace project instead of a jar dependency, but it is a bit of a corner case maybe.

Re: Running Camel Main from Eclipse

2022-01-19 Thread Claus Ibsen
Hi There should not be any eclipse specific code in camel or camel-main. Its just a "public static void Main" class. The stracktrace you posted tells that you need to add camel-grpc to the classpath. On Wed, Jan 19, 2022 at 1:20 PM Peter Lundin Q wrote: > > Hi, > > I noticed that when

Running Camel Main from Eclipse

2022-01-19 Thread Peter Lundin Q
Hi, I noticed that when upgrading from 3.13.0 to 3.14.0 the possibility of running a Camel Main application from Eclipse stopped working both for "Run As -> Java Application" and "Debug As". Switching camel version back to 3.13.0 in the pom and it works fine. Any ideas on what could cause