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

[camel-spring-boot-examples] branch camel-3.20.x updated: CAMEL-19185: Camel Spring Boot Example: Twitter-Salesforce: camel-salesforce-maven-plugin - make TLS version configurable via system properties

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

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


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

commit 66456ec9fe334def02da8f20d4837feb02a29fbe
Author: Luigi De Masi <ld...@redhat.com>
AuthorDate: Wed Mar 22 12:06:50 2023 +0100

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

diff --git a/twitter-salesforce/pom.xml b/twitter-salesforce/pom.xml
index 917fcac..089ca1f 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>
 
@@ -178,6 +179,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>