it still doesn’t like ```repositories { maven(ur...
# gradle
w
it still doesn’t like
Copy code
repositories {
  maven(uri("http://<our internal nexus server>/nexus/content/groups/public"))
}
i
This should come with
maven
extension function which accepts
url: Any
. It was added in kotlin-dsl 0.12, which is bundled in Gradle 4.3.
w
thanks for your help! it seems the problem in my case was due to another build file in a superproject. when I opened this project on its own, it was fine. my bad.