What’s the Kotlin equivalent for this Groovy DSL c...
# gradle
r
What’s the Kotlin equivalent for this Groovy DSL configuration of the Gradle IDEA plugin?
Copy code
idea {
        module {
            downloadJavadoc = true
            downloadSources = true
        }
    }
v
Copy code
idea {
    module {
        isDownloadJavadoc = true
        isDownloadSources = true
    }
}
thank you color 2
Just use the IntelliSense, that's one of the greatest advantages of the Kotlin DSL. 🙂