JesperBerggren commented on issue #5962: URL: https://github.com/apache/camel-quarkus/issues/5962#issuecomment-2047457958
Ok, I have it running but had to make two unexpected dependencies in the pom. First it complained about: `java.lang.ClassNotFoundException: org.springframework.data.util.CloseableIterator` I got past that by adding this dependency: ``` <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-commons</artifactId> <version>3.2.4</version> </dependency> ``` Then I complained about: `java.lang.ClassNotFoundException: org.springframework.expression.EvaluationContext` And I got past that by adding this dependency: ``` <dependency> <groupId>org.springframework</groupId> <artifactId>spring-expression</artifactId> <version>6.1.5</version> </dependency> ``` I'm thinking that these dependencies really shouldn't be necessary and perhaps should be included in the `camel-quarkus-spring-redis artifact`?? -- 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-unsubscr...@camel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org