Christoph Deppisch

Results 215 comments of Christoph Deppisch

also consider using [mvnd](https://github.com/apache/maven-mvnd) Maven deamon to run the builds

Also, you likely need to add the `citrus-jms` module to the Maven project

Here is what I did for DevoxxBE as demo: https://github.com/christophd/citrus-demo-devoxx-be In particular review these bits: [voting-rest-api.feature](https://github.com/christophd/citrus-demo-devoxx-be/blob/master/voting-rest/src/test/resources/com/consol/citrus/demo/voting/rest/voting-rest-api.feature) [VotingRestFeatureIT.java](https://github.com/christophd/citrus-demo-devoxx-be/blob/master/voting-rest/src/test/java/com/consol/citrus/demo/voting/rest/VotingRestFeatureIT.java) [cucumber.properties](https://github.com/christophd/citrus-demo-devoxx-be/blob/master/voting-rest/src/test/resources/cucumber.properties)

You have to set a http client in the Spring bean application context to make this work. I would consider this as a bug because the client is only used...

Hi, there is the option to set * CAMEL_KAMELET_AWS_SQS_SOURCE_USE_DEFAULT_CREDENTIALS_PROVIDER=true in combination with * CAMEL_KAMELET_AWS_SQS_SOURCE_USE_SESSION_CREDENTIALS=true The SQS client should expect to use session credentials then. This is useful in situation in...

I need to find the time to reproduce this. I do not see any reason why `CAMEL_` env vars shouldn't work with ContainerSource. @matzew is the `gcr.io/knative-nightly` image up to...

Thank you for the detailed error analysis. I think you are totally right with the header filter. I am looking into it for a fix ...

> I think maintaining compatibility for multiple versions (namely 6 and 7) will be extremely hard to manage. Absolutely! I think many projects and users will stay on Spring 6...

`packageScan` is only for resources in classpath so it will not work with `file:` file system resources. The `sources` property in the `@CitrusTestSource` annotation should be able to support file...