This message was deleted.
# community-support
s
This message was deleted.
a
Error says:
Copy code
Could not resolve all files for configuration ':testCompileClasspath'.
   > Could not find io.cucumber:cucumberjava:7.2.0.
that means that library
io.cucumber:cucumberjava:7.2.0
was not found. You should probably add
Copy code
repositories {
   mavenCentral()
}
to your build script.
a
Hello Anze, thanks! But I have changed format dependencies like that
testImplementation group: 'io.cucumber', name: 'cucumber-junit', version: '7.0.0' implementation group: 'io.cucumber', name: 'cucumber-java', version: '7.0.0' }