You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by "raweber42 (via GitHub)" <gi...@apache.org> on 2024/03/13 07:12:52 UTC

[I] Adding camel-quarkus-google-pubsub to project leads to ClassNotFoundException: io.vertx.grpc.server.GrpcServer [camel-quarkus]

raweber42 opened a new issue, #5866:
URL: https://github.com/apache/camel-quarkus/issues/5866

   ### Bug description
   
   When adding the `camel-quarkus-google-pubsub` dependency to my project, I get a `ClassNotFoundException: io.vertx.grpc.server.GrpcServer` and my service cannot startup anymore. I assume it has something todo with the exclusion of certain dependencies in the `camel-quarkus-google-pubsub` dependency itself, but how can I fix it? 
   
   Fyi: My project uses a library which has dependencies on `quarkus-grpc`


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Adding camel-quarkus-google-pubsub to project leads to ClassNotFoundException: io.vertx.grpc.server.GrpcServer [camel-quarkus]

Posted by "jamesnetherton (via GitHub)" <gi...@apache.org>.
jamesnetherton commented on issue #5866:
URL: https://github.com/apache/camel-quarkus/issues/5866#issuecomment-1993729738

   Try adding:
   
   ```
           <dependency>
               <groupId>io.vertx</groupId>
               <artifactId>vertx-grpc</artifactId>
           </dependency>
           <dependency>
               <groupId>io.vertx</groupId>
               <artifactId>vertx-grpc-server</artifactId>
           </dependency>
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Adding camel-quarkus-google-pubsub to project leads to ClassNotFoundException: io.vertx.grpc.server.GrpcServer [camel-quarkus]

Posted by "raweber42 (via GitHub)" <gi...@apache.org>.
raweber42 commented on issue #5866:
URL: https://github.com/apache/camel-quarkus/issues/5866#issuecomment-1993777796

   @jamesnetherton amazing, I didn't think of adding the second one explicitly! This resolved it.
   
   Probs to the lightning-fast support by the way!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Adding camel-quarkus-google-pubsub to project leads to ClassNotFoundException: io.vertx.grpc.server.GrpcServer [camel-quarkus]

Posted by "jamesnetherton (via GitHub)" <gi...@apache.org>.
jamesnetherton commented on issue #5866:
URL: https://github.com/apache/camel-quarkus/issues/5866#issuecomment-1993734780

   > @raweber42 can you share the entire `pom.xml`?
   
   I see the same issue by adding `quarkus-grpc` into the google-pubsub integration test module. It's likely due to the exclusions I added on `quarkus-grpc-common`.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Adding camel-quarkus-google-pubsub to project leads to ClassNotFoundException: io.vertx.grpc.server.GrpcServer [camel-quarkus]

Posted by "jamesnetherton (via GitHub)" <gi...@apache.org>.
jamesnetherton commented on issue #5866:
URL: https://github.com/apache/camel-quarkus/issues/5866#issuecomment-1993774773

   > OK, is there any reason to exclude these dependencies in `quarkus-grpc-common`?
   
   In the past there was, but it's now probably not necessary. I did the same thing in a few other places, so that'll need checking too.
   
   I can take a look into it.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Adding camel-quarkus-google-pubsub to project leads to ClassNotFoundException: io.vertx.grpc.server.GrpcServer [camel-quarkus]

Posted by "jamesnetherton (via GitHub)" <gi...@apache.org>.
jamesnetherton commented on issue #5866:
URL: https://github.com/apache/camel-quarkus/issues/5866#issuecomment-1993780024

   > Probs to the lightning-fast support by the way!
   
   🚀 
   
   I'll reopen this so I can fix it permanently.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Adding camel-quarkus-google-pubsub to project leads to ClassNotFoundException: io.vertx.grpc.server.GrpcServer [camel-quarkus]

Posted by "zhfeng (via GitHub)" <gi...@apache.org>.
zhfeng commented on issue #5866:
URL: https://github.com/apache/camel-quarkus/issues/5866#issuecomment-1993769318

   OK, is there any reason to exclude these dependencies in `quarkus-grpc-common`?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Adding camel-quarkus-google-pubsub to project leads to ClassNotFoundException: io.vertx.grpc.server.GrpcServer [camel-quarkus]

Posted by "zhfeng (via GitHub)" <gi...@apache.org>.
zhfeng commented on issue #5866:
URL: https://github.com/apache/camel-quarkus/issues/5866#issuecomment-1993725399

   @raweber42 can you share the entire `pom.xml`?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Adding camel-quarkus-google-pubsub to project leads to ClassNotFoundException: io.vertx.grpc.server.GrpcServer [camel-quarkus]

Posted by "raweber42 (via GitHub)" <gi...@apache.org>.
raweber42 closed issue #5866: Adding camel-quarkus-google-pubsub to project leads to ClassNotFoundException: io.vertx.grpc.server.GrpcServer
URL: https://github.com/apache/camel-quarkus/issues/5866


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Re: [I] Adding camel-quarkus-google-pubsub to project leads to ClassNotFoundException: io.vertx.grpc.server.GrpcServer [camel-quarkus]

Posted by "jamesnetherton (via GitHub)" <gi...@apache.org>.
jamesnetherton closed issue #5866: Adding camel-quarkus-google-pubsub to project leads to ClassNotFoundException: io.vertx.grpc.server.GrpcServer
URL: https://github.com/apache/camel-quarkus/issues/5866


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@camel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org