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.git
The following commit(s) were added to refs/heads/main by this push: new 5008e9c65a6 camel-salesforce-maven-plugin: remove required flag from camelSalesforce.password and camelSalesforce.clientSecret property (#17703) 5008e9c65a6 is described below commit 5008e9c65a69f208429ccd1c329a84be98ed6311 Author: Kai Grassnick <7880861+kaigrassn...@users.noreply.github.com> AuthorDate: Thu Apr 10 13:45:50 2025 +0200 camel-salesforce-maven-plugin: remove required flag from camelSalesforce.password and camelSalesforce.clientSecret property (#17703) Co-authored-by: Kai Grassnick <kgrassn...@integrationmatters.com> --- .../src/main/java/org/apache/camel/maven/AbstractSalesforceMojo.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/camel-salesforce/camel-salesforce-maven-plugin/src/main/java/org/apache/camel/maven/AbstractSalesforceMojo.java b/components/camel-salesforce/camel-salesforce-maven-plugin/src/main/java/org/apache/camel/maven/AbstractSalesforceMojo.java index b94b06154c2..8d60b7a80c9 100644 --- a/components/camel-salesforce/camel-salesforce-maven-plugin/src/main/java/org/apache/camel/maven/AbstractSalesforceMojo.java +++ b/components/camel-salesforce/camel-salesforce-maven-plugin/src/main/java/org/apache/camel/maven/AbstractSalesforceMojo.java @@ -48,7 +48,7 @@ public abstract class AbstractSalesforceMojo extends AbstractMojo { /** * Salesforce client secret. */ - @Parameter(property = "camelSalesforce.clientSecret", required = true) + @Parameter(property = "camelSalesforce.clientSecret") String clientSecret; /** @@ -132,7 +132,7 @@ public abstract class AbstractSalesforceMojo extends AbstractMojo { /** * Salesforce password. */ - @Parameter(property = "camelSalesforce.password", required = true) + @Parameter(property = "camelSalesforce.password") String password; /**