Is it possible to get the sourceSets given a proje...
# gradle
i
Is it possible to get the sourceSets given a project something like?:
Copy code
subProject { project ->
  def projectSourceSetClasspath = project.sourceSets.main.runTimeClassPath
}
t
Copy code
// since Kotlin 1.3.60
project.extensions.findByType(org.jetbrains.kotlin.gradle.plugin.KotlinSourceSetContainer::class.java)!!
    .apply {
        sourceSets.all {
            println(this.name)
        }
    }
i
Thank you @turansky !