GarouDan
01/29/2019, 1:10 AMgroup "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:
group("com.company.team.project")
version("0.0.1")
but it didn’t work.serebit
01/29/2019, 2:00 AMgroup = “com.company.team.project”
GarouDan
01/29/2019, 2:19 AMmaven { url = "<https://dl.bintray.com/kotlin/kotlin-eap>" }
It says to be that is necessary a URI type, but I tried something like
maven { url = URI("<https://dl.bintray.com/kotlin/kotlin-eap>") }
or java.net.URI
but It didn’t workserebit
01/29/2019, 2:20 AMmaven("<https://dl.bintray.com/kotlin/kotlin-eap>")
GarouDan
01/29/2019, 2:23 AMserebit
01/29/2019, 2:23 AM