Failed when gradle katalonCopyDependencies

I believe you hava a build.gradle file which was generated by Katalon Studio as follows:

plugins {
  id 'java'
  id "com.katalon.gradle-plugin" version "0.0.7"
}
...

Unfortunately this code is outdated. You need to change it manually to:

plugins {
  id 'java'
  id "com.katalon.gradle-plugin" version "0.1.1"
}
...

See the Gradle Plugin doc for the current version number. It is a shame that Katalon Studio generates something outdated and troublesome.

1 Like