is there a dsl for this in kotlin? ``` configurat...
# gradle
x
is there a dsl for this in kotlin?
Copy code
configurations {
    compileClasspath {
        resolutionStrategy.activateDependencyLocking()
    }
}
g
@xenoterracide
Copy code
configurations {
    "compileClasspath" {
        resolutionStrategy.activateDependencyLocking()
    }
}
Or:
Copy code
configurations["compileClasspath"].resolutionStrategy.activateDependencyLocking()