This is an automated email from the ASF dual-hosted git repository. fmariani pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
commit fbbbec08080cc29da186b47ba32362f379694dcc Author: Croway <federico.mariani.1...@gmail.com> AuthorDate: Tue Sep 2 10:30:39 2025 +0200 Fix salesforce tests --- components-starter/camel-salesforce-starter/pom.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/components-starter/camel-salesforce-starter/pom.xml b/components-starter/camel-salesforce-starter/pom.xml index aae82b5cbbf..fa6c79b50fb 100644 --- a/components-starter/camel-salesforce-starter/pom.xml +++ b/components-starter/camel-salesforce-starter/pom.xml @@ -45,6 +45,19 @@ <version>${squareup-okhttp-version}</version> <scope>test</scope> </dependency> + <!-- forcing jetty-http since mockserver would include an older 12.0.x, not compatible, version --> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-http</artifactId> + <version>${jetty-version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-alpn-client</artifactId> + <version>${jetty-version}</version> + <scope>test</scope> + </dependency> <!-- forcing okhttp v3.x related to https://issues.apache.org/jira/browse/CAMEL-16336 --> <dependency> <groupId>com.squareup.okhttp3</groupId>