Does anybody has experience with external build sc...
# gradle
g
Does anybody has experience with external build scripts and KotlinDSL: What I have (and what works in groovy)
Copy code
build.gradle.kts

plugins {
    id("org.sonarqube") version "2.6.2" apply false
}
apply {
    from("sonarqube.gradle.kts")
}


--------
sonarqube.gradle.kts


apply{
    plugin("org.sonarqube")
}

configure<org.sonarqube.gradle.SonarQubeExtension> {
    properties {
        property("sonar.projectName", "${rootProject.name}-${project.name}")
    }
}
m
g
Thanks. I must say that I was searching quite a while, but never stumbled over that issue. Just used the wrong keywords for the search...