You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://search.maven.org/artifact/com.commercetools/commercetools-sync-java/8.1.1/jar)
[](https://search.maven.org/artifact/com.commercetools/commercetools-sync-java/9.0.0/jar)
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
@@ -45,8 +45,8 @@ Notes:
45
45
46
46
### Prerequisites
47
47
48
-
- Library requires the min JDK version `>= 8`.
49
-
> The library tested with each major JDK version (i.e: 8, 9, 10, 11, 12, 13...) as well as some specific updates of LTS versions (i.e: 8.0.192, 11.0.3).
48
+
- Library requires the min JDK version `>= 11`.
49
+
> The library tested with each major JDK version (i.e: 11, 12, 13...) as well as some specific updates of LTS versions (i.e: 11.0.3 and above).
50
50
- A target commercetools project for syncing your source data to.
51
51
52
52
### Installation
@@ -60,26 +60,26 @@ Here are the most popular ones:
[](https://search.maven.org/artifact/com.commercetools/commercetools-sync-java/8.1.1/jar)
[](https://search.maven.org/artifact/com.commercetools/commercetools-sync-java/9.0.0/jar)
Copy file name to clipboardExpand all lines: docs/usage/CART_DISCOUNT_SYNC.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ against a [CartDiscountDraft](https://docs.commercetools.com/http-api-projects-c
36
36
37
37
#### SphereClient
38
38
39
-
Use the [ClientConfigurationUtils](https://github.com/commercetools/commercetools-sync-java/blob/8.1.1/src/main/java/com/commercetools/sync/commons/utils/ClientConfigurationUtils.java#L45) which apply the best practices for `SphereClient` creation.
39
+
Use the [ClientConfigurationUtils](https://github.com/commercetools/commercetools-sync-java/blob/9.0.0/src/main/java/com/commercetools/sync/commons/utils/ClientConfigurationUtils.java#L45) which apply the best practices for `SphereClient` creation.
40
40
If you have custom requirements for the sphere client creation, have a look into the [Important Usage Tips](IMPORTANT_USAGE_TIPS.md).
41
41
42
42
````java
@@ -67,7 +67,7 @@ Therefore, in order to resolve the actual ids of those references in the sync pr
67
67
68
68
##### Syncing from a commercetools project
69
69
70
-
When syncing from a source commercetools project, you can use [`toCartDiscountDrafts`](https://commercetools.github.io/commercetools-sync-java/v/8.1.1/com/commercetools/sync/cartdiscounts/utils/CartDiscountTransformUtils.html#toCartDiscountDrafts-java.util.List-)
70
+
When syncing from a source commercetools project, you can use [`toCartDiscountDrafts`](https://commercetools.github.io/commercetools-sync-java/v/9.0.0/com/commercetools/sync/cartdiscounts/utils/CartDiscountTransformUtils.html#toCartDiscountDrafts-java.util.List-)
71
71
method that transforms(resolves by querying and caching key-id pairs) and maps from a `CartDiscount` to `CartDiscountDraft` using cache in order to make them ready for reference resolution by the sync, for example:
Copy file name to clipboardExpand all lines: docs/usage/CATEGORY_SYNC.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ against a [CategoryDraft](https://docs.commercetools.com/http-api-projects-categ
36
36
37
37
#### SphereClient
38
38
39
-
Use the [ClientConfigurationUtils](https://github.com/commercetools/commercetools-sync-java/blob/8.1.1/src/main/java/com/commercetools/sync/commons/utils/ClientConfigurationUtils.java#L45) which apply the best practices for `SphereClient` creation.
39
+
Use the [ClientConfigurationUtils](https://github.com/commercetools/commercetools-sync-java/blob/9.0.0/src/main/java/com/commercetools/sync/commons/utils/ClientConfigurationUtils.java#L45) which apply the best practices for `SphereClient` creation.
40
40
If you have custom requirements for the sphere client creation, have a look into the [Important Usage Tips](IMPORTANT_USAGE_TIPS.md).
41
41
42
42
````java
@@ -135,7 +135,7 @@ As soon, as the referenced parent Category draft is supplied to the sync, the dr
135
135
136
136
##### Syncing from a commercetools project
137
137
138
-
When syncing from a source commercetools project, you can use [`toCategoryDrafts`](https://commercetools.github.io/commercetools-sync-java/v/8.1.1/com/commercetools/sync/categories/utils/CategoryTransformUtils.html#toCategoryDrafts-java.util.List-)
138
+
When syncing from a source commercetools project, you can use [`toCategoryDrafts`](https://commercetools.github.io/commercetools-sync-java/v/9.0.0/com/commercetools/sync/categories/utils/CategoryTransformUtils.html#toCategoryDrafts-java.util.List-)
139
139
method that transforms(resolves by querying and caching key-id pairs) and maps from a `Category` to `CategoryDraft` using cache in order to make them ready for reference resolution by the sync, for example:
Copy file name to clipboardExpand all lines: docs/usage/CUSTOMER_SYNC.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ against a [CustomerDraft](https://docs.commercetools.com/api/projects/customers#
35
35
### Prerequisites
36
36
#### SphereClient
37
37
38
-
Use the [ClientConfigurationUtils](https://github.com/commercetools/commercetools-sync-java/blob/8.1.1/src/main/java/com/commercetools/sync/commons/utils/ClientConfigurationUtils.java#L45) which apply the best practices for `SphereClient` creation.
38
+
Use the [ClientConfigurationUtils](https://github.com/commercetools/commercetools-sync-java/blob/9.0.0/src/main/java/com/commercetools/sync/commons/utils/ClientConfigurationUtils.java#L45) which apply the best practices for `SphereClient` creation.
39
39
If you have custom requirements for the sphere client creation, have a look into the [Important Usage Tips](IMPORTANT_USAGE_TIPS.md).
40
40
41
41
````java
@@ -69,7 +69,7 @@ Therefore, in order to resolve the actual ids of those references in the sync pr
69
69
70
70
##### Syncing from a commercetools project
71
71
72
-
When syncing from a source commercetools project, you can use [`toCustomerDrafts`](https://commercetools.github.io/commercetools-sync-java/v/8.1.1/com/commercetools/sync/customers/utils/CustomerTransformUtils.html#toCustomerDrafts-java.util.List-)
72
+
When syncing from a source commercetools project, you can use [`toCustomerDrafts`](https://commercetools.github.io/commercetools-sync-java/v/9.0.0/com/commercetools/sync/customers/utils/CustomerTransformUtils.html#toCustomerDrafts-java.util.List-)
73
73
method that transforms(resolves by querying and caching key-id pairs) and maps from a `Customer` to `CustomerDraft` using cache in order to make them ready for reference resolution by the sync, for example:
0 commit comments