Failed when gradle katalonCopyDependencies

Please help me

Gradle 8.5
Katalon Studio: 9.2.0

FAILURE: Build failed with an exception.

  • Where:

Build file ‘/Users/suongtnguyen/Desktop/Migrate/MigrateSe/build.gradle’ line: 3

  • What went wrong:

An exception occurred applying plugin request [id: ‘com.katalon.gradle-plugin’, version: ‘0.0.7’]

Failed to apply plugin class ‘com.github.jengelman.gradle.plugins.shadow.ShadowJavaPlugin’.

You can’t map a property that does not exist: propertyName=classifier

  • Try:

Run with –stacktrace option to get the stack trace.

Run with –info or –debug option to get more log output.

Run with –scan to get full insights.

Get more help at https://help.gradle.org.

Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0.

You can use ‘–warning-mode all’ to show the individual deprecation warnings and determine if they come from your own scripts or plugins.

For more on this, please refer to Command-Line Interface Reference in the Gradle documentation.

1 Like

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

@kazurayam thanks so much, I have successfully converted from Selenium Project to Katalon Project

1 Like