You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/03/22 11:13:52 UTC

[camel-spring-boot-examples] branch main updated: CAMEL-19185: Camel Spring Boot Example: Twitter-Salesforce: camel-salesforce-maven-plugin - make TLS version configurable via system properties (#99)

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot-examples.git


The following commit(s) were added to refs/heads/main by this push:
     new 0030859  CAMEL-19185: Camel Spring Boot Example: Twitter-Salesforce: camel-salesforce-maven-plugin - make TLS version configurable via system properties (#99)
0030859 is described below

commit 00308590acc3179a63b8e135b4e1993e71b0884b
Author: Luigi De Masi <55...@users.noreply.github.com>
AuthorDate: Wed Mar 22 12:13:47 2023 +0100

    CAMEL-19185: Camel Spring Boot Example: Twitter-Salesforce: camel-salesforce-maven-plugin - make TLS version configurable via system properties (#99)
---
 twitter-salesforce/pom.xml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/twitter-salesforce/pom.xml b/twitter-salesforce/pom.xml
index 9f494c0..88cd5f8 100644
--- a/twitter-salesforce/pom.xml
+++ b/twitter-salesforce/pom.xml
@@ -39,6 +39,7 @@
 		<camelSalesforce.clientSecret></camelSalesforce.clientSecret>
 		<camelSalesforce.userName></camelSalesforce.userName>
 		<camelSalesforce.password></camelSalesforce.password>
+		<camelSalesforce.sslContextParameters.secureSocketProtocol>TLSv1.3</camelSalesforce.sslContextParameters.secureSocketProtocol>
 		<camelSalesforce.loginUrl>https://login.salesforce.com</camelSalesforce.loginUrl>
 	</properties>
 
@@ -168,6 +169,9 @@
 									<clientSecret>${camelSalesforce.clientSecret}</clientSecret>
 									<userName>${camelSalesforce.userName}</userName>
 									<password>${camelSalesforce.password}</password>
+									<sslContextParameters>
+										<secureSocketProtocol>${camelSalesforce.sslContextParameters.secureSocketProtocol}</secureSocketProtocol>
+									</sslContextParameters>
 									<includes>
 										<include>Contact</include>
 									</includes>