如何在 gradle kts 脚本中获取运行时类路径?
How to get runtime classpath in gradle kts script?
在 gradle 脚本中,我可以执行 sourceSets.main.runtimeClasspath
来获取运行时类路径。但在 kts 脚本中它抱怨
Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public val NamedDomainObjectContainer<Configuration>.runtimeClasspath: NamedDomainObjectProvider<Configuration> defined in org.gradle.kotlin.dsl
如何在 kts 脚本中实现?
原来我需要sourceSets["main"].runtimeClasspath
。不确定这是否是最惯用的方式
在 gradle 脚本中,我可以执行 sourceSets.main.runtimeClasspath
来获取运行时类路径。但在 kts 脚本中它抱怨
Unresolved reference. None of the following candidates is applicable because of receiver type mismatch:
public val NamedDomainObjectContainer<Configuration>.runtimeClasspath: NamedDomainObjectProvider<Configuration> defined in org.gradle.kotlin.dsl
如何在 kts 脚本中实现?
原来我需要sourceSets["main"].runtimeClasspath
。不确定这是否是最惯用的方式