How to solve the Error with debug - logging : Cannot access 'io.gatling.gradle.JvmConfigurable.Trait.FieldHelper'?
I need to check the log for performance execution on cursor based pagination scripts in jenkins. but the build.gradle always shows error with log parameters such as at logHttp & logLevel
plugins {
id("scala")
id("io.gatling.gradle") version "3.9.0"
}
gatling {
logHttp = io.gatling.gradle.LogHttp.FAILURES
logLevel = "WARN"
}
repositories {
maven {
url = uri("https://repo1.maven.org/maven2/")
}
}
Error message :
Cannot access 'io.gatling.gradle.JvmConfigurable.Trait.FieldHelper'
which is a supertype of 'io.gatling.gradle.GatlingPluginExtension'.
Check your module classpath for missing or conflicting dependencies
Please help me solve this issue