You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by dh...@apache.org on 2014/10/03 20:34:47 UTC

git commit: Update README.md - Add Prefix "camelSalesforce"

Repository: camel
Updated Branches:
  refs/heads/master bb41259f6 -> e73820dec


Update README.md - Add Prefix "camelSalesforce" 

The suffix "camelSalesforce" needs to be added as prefix to the properties.
The command should be corrected as:
mvn camel-salesforce:generate -DcamelSalesforce.clientId=<clientid> -DcamelSalesforce.clientSecret=<clientsecret> -DcamelSalesforce.userName=<username> -DcamelSalesforce.password=<password>

Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/e73820de
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/e73820de
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/e73820de

Branch: refs/heads/master
Commit: e73820dec98bae92a92be836164e2839393ce237
Parents: bb41259
Author: yelamanchili-murali <ye...@gmail.com>
Authored: Fri Oct 3 15:48:34 2014 +1000
Committer: yelamanchili-murali <ye...@gmail.com>
Committed: Fri Oct 3 15:48:34 2014 +1000

----------------------------------------------------------------------
 .../camel-salesforce/camel-salesforce-maven-plugin/README.md       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/e73820de/components/camel-salesforce/camel-salesforce-maven-plugin/README.md
----------------------------------------------------------------------
diff --git a/components/camel-salesforce/camel-salesforce-maven-plugin/README.md b/components/camel-salesforce/camel-salesforce-maven-plugin/README.md
index 5bfd808..0424771 100644
--- a/components/camel-salesforce/camel-salesforce-maven-plugin/README.md
+++ b/components/camel-salesforce/camel-salesforce-maven-plugin/README.md
@@ -21,6 +21,6 @@ The plugin configuration has the following properties.
 Fro obvious security reasons it is recommended that the clientId, clientSecret, userName and password fields be not set in the pom.xml. 
 The plugin should be configured for the rest of the properties, and can be executed using the following command:
 
-	mvn camel-salesforce:generate -DclientId=<clientid> -DclientSecret=<clientsecret> -DuserName=<username> -Dpassword=<password>
+	mvn camel-salesforce:generate -DcamelSalesforce.clientId=<clientid> -DcamelSalesforce.clientSecret=<clientsecret> -DcamelSalesforce.userName=<username> -DcamelSalesforce.password=<password>
 
 The generated DTOs use Jackson and XStream annotations. All Salesforce field types are supported. Date and time fields are mapped to Joda DateTime, and picklist fields are mapped to generated Java Enumerations.