2.0.0
It's now mandatory to add a http client module as a dependency to avoid resolving unsupported versions of the HTTP client
The default one would be
Maven:
<dependency>
<groupId>com.commercetools.sdk</groupId>
<artifactId>commercetools-http-client</artifactId>
<version>${commercetools.version}</version>
</dependency>
Gradle
dependencies {
implementation "com.commercetools.sdk:commercetools-http-client:${versions.commercetools}"
}