If we have something like ``` group "com.company....
# dsl
g
If we have something like
Copy code
group "com.company.team.project"
version "0.0.1"
in our
build.gradle
how can we convert this to a
build.gradle.kts
file? I tried something like:
Copy code
group("com.company.team.project")
version("0.0.1")
but it didn’t work.
s
group = “com.company.team.project”
g
Oh thanks, it works. Do you know how could I translate this another one too?
Copy code
maven { url = "<https://dl.bintray.com/kotlin/kotlin-eap>" }
It says to be that is necessary a URI type, but I tried something like
Copy code
maven { url = URI("<https://dl.bintray.com/kotlin/kotlin-eap>") }
or java.net.URI but It didn’t work
s
maven("<https://dl.bintray.com/kotlin/kotlin-eap>")
g
Thanks a lot 😃
s
no problem 🙂