sbyrne
04/23/2019, 1:01 AMbuild.gradle.kts
and MyClass.kt
in the project dir. build.gradle.kts
has sourceSets { main { java { setSrcDirs(listOf(".")); exclude( "*.kts" ) } } }
. All works from from command line, but Idea doesn't pick up the project dir as a source dir, and doesn't do code completion in MyClass.kt
.Alexey Belkov [JB]
04/23/2019, 8:21 AM