anyone know how to do this in kotlin DSL? ```mave...
# multiplatform
k
anyone know how to do this in kotlin DSL?
Copy code
maven {
    url = <http://java.net|java.net>.URI("<https://dl.bintray.com/suparnatural/kotlin-multiplatform>")
}
Copy code
maven("<https://dl.bintray.com/suparnatural/kotlin-multiplatform>")
c
maven(url = "<https://dl.bintray.com/suparnatural/kotlin-multiplatform>")
should do the trick
e
there’s also
Copy code
maven {
   url = uri("<https://dl.bintray.com/suparnatural/kotlin-multiplatform>")
}
that will work in both Kotlin and Groovy scripts
k
thanks!