how do I migrate the following to kotlin DSL? ```...
# gradle
r
how do I migrate the following to kotlin DSL?
Copy code
configurations {
    karateTestCompile.extendsFrom testCompile
    karateTestRuntime.extendsFrom testRuntime
    pactTestCompile.extendsFrom testCompile
    pactTestRuntime.extendsFrom testRuntime
}
o
add parentheses to the method calls, and maybe call
getByName
if accessors aren't generated
e.g.
getByName("karateTestCompile").extendsFrom(getByName("testCompile"))