eclipseでGradleプロジェクトをクローンしてきてもCould not create an instance of ~ と怒られる

【事象】
gitにコミットされているgradleプロジェクトをクローンしてきた。
しかし、以下の様なエラーメッセージがeclipseに表示されてしまい、依存性ライブラリを取得しにいってくれない。

Could not create an instance of Tooling API implementation using the specified Gradle distribution 'https://services.gradle.org/distributions/gradle-4-6-bin.zip' 

【対応方法】
以下2点を修正した。

[build.gradle]

(中略)
// 元々4.6と指定されていたのを4.10.3に修正
task wrapper(type: Wrapper) {
    gradleVersion = '4.10.3'
}

[gradle/wrapper/gradle-wrapper.properties]

(中略)
//同じく4.6 → 4.10.3に修正
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.3-bin.zip

【注意点】
ここを直したが、他のエラーが発生していたのを修正が進んでいないと誤認識する場合があった。
(自分は、ここを直した事でapply plugin com.github.spotbugsの設定[バージョンを1.6.0→1.6.9にしないといけない箇所の不備]を次に直さないといけないのを認識するのに時間を要した)