From 23c475577b34e9d5707facf9db2c2c852689c892 Mon Sep 17 00:00:00 2001 From: Lam Tran Date: Tue, 9 Jan 2024 10:47:09 +0000 Subject: [PATCH] Update sync-java (#542) --- README.md | 34 +++++++++++++++++----------------- build.gradle | 2 +- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index d362fac8..d1b1edbc 100644 --- a/README.md +++ b/README.md @@ -210,7 +210,7 @@ Example: ##### Download ```bash -docker pull commercetools/commercetools-project-sync:5.4.4 +docker pull commercetools/commercetools-project-sync:5.4.5 ``` ##### Run @@ -222,14 +222,14 @@ docker run \ -e TARGET_PROJECT_KEY=xxxx \ -e TARGET_CLIENT_ID=xxxx \ -e TARGET_CLIENT_SECRET=xxxx \ -commercetools/commercetools-project-sync:5.4.4 -s all +commercetools/commercetools-project-sync:5.4.5 -s all ``` ### Examples - To run the all sync modules from a source project to a target project ```bash - docker run commercetools/commercetools-project-sync:5.4.4 -s all + docker run commercetools/commercetools-project-sync:5.4.5 -s all ``` This will run the following sync modules in the given order: 1. `Type` Sync and `ProductType` Sync and `States` Sync and `TaxCategory` Sync and `CustomObject` Sync in parallel. @@ -239,70 +239,70 @@ commercetools/commercetools-project-sync:5.4.4 -s all - To run the type sync ```bash - docker run commercetools/commercetools-project-sync:5.4.4 -s types + docker run commercetools/commercetools-project-sync:5.4.5 -s types ``` - To run the productType sync ```bash - docker run commercetools/commercetools-project-sync:5.4.4 -s productTypes + docker run commercetools/commercetools-project-sync:5.4.5 -s productTypes ``` - To run the states sync ```bash - docker run commercetools/commercetools-project-sync:5.4.4 -s states + docker run commercetools/commercetools-project-sync:5.4.5 -s states ``` - To run the taxCategory sync ```bash - docker run commercetools/commercetools-project-sync:5.4.4 -s taxCategories + docker run commercetools/commercetools-project-sync:5.4.5 -s taxCategories ``` - To run the category sync ```bash - docker run commercetools/commercetools-project-sync:5.4.4 -s categories + docker run commercetools/commercetools-project-sync:5.4.5 -s categories ``` - To run the product sync ```bash - docker run commercetools/commercetools-project-sync:5.4.4 -s products + docker run commercetools/commercetools-project-sync:5.4.5 -s products ``` - To run the cartDiscount sync ```bash - docker run commercetools/commercetools-project-sync:5.4.4 -s cartDiscounts + docker run commercetools/commercetools-project-sync:5.4.5 -s cartDiscounts ``` - To run the inventoryEntry sync ```bash - docker run commercetools/commercetools-project-sync:5.4.4 -s inventoryEntries + docker run commercetools/commercetools-project-sync:5.4.5 -s inventoryEntries ``` - To run the customObject sync ```bash - docker run commercetools/commercetools-project-sync:5.4.4 -s customObjects + docker run commercetools/commercetools-project-sync:5.4.5 -s customObjects ``` - To run the customer sync ```bash - docker run commercetools/commercetools-project-sync:5.4.4 -s customers + docker run commercetools/commercetools-project-sync:5.4.5 -s customers ``` - To run the shoppingList sync ```bash - docker run commercetools/commercetools-project-sync:5.4.4 -s shoppingLists + docker run commercetools/commercetools-project-sync:5.4.5 -s shoppingLists ``` - To run both products and shoppingList sync ```bash - docker run commercetools/commercetools-project-sync:5.4.4 -s products shoppingLists + docker run commercetools/commercetools-project-sync:5.4.5 -s products shoppingLists ``` - To run type, productType and shoppingList sync ```bash - docker run commercetools/commercetools-project-sync:5.4.4 -s types productTypes shoppingLists + docker run commercetools/commercetools-project-sync:5.4.5 -s types productTypes shoppingLists ``` - To run all sync modules using a runner name ```bash - docker run commercetools/commercetools-project-sync:5.4.4 -s all -r myRunnerName + docker run commercetools/commercetools-project-sync:5.4.5 -s all -r myRunnerName ``` ## Scopes diff --git a/build.gradle b/build.gradle index b431a21a..762496c3 100644 --- a/build.gradle +++ b/build.gradle @@ -34,7 +34,7 @@ ext { assertjVersion = '3.25.1' pmdVersion = '6.55.0' jacocoVersion = '0.8.11' - commercetoolsSyncJava = '10.0.3' + commercetoolsSyncJava = '10.0.4' httpClientVersion = '17.3.0' apacheCliVersion = '1.6.0' jupiterApiVersion = '5.10.1'