Are typed extensions or named objects working in the lastet kotlin-dsl ? No matter what I do (so far) Im getting the Accessors0.kt file generating accessors for extension objects written in Kotlin with "Any" type Like this:
/**
* Retrieves the [report][nexstra.client.workflow.RunReportSteps.Parameters] extension.
*
*
report
is not accessible in a type safe way because:
* -
nexstra.client.workflow.RunReportSteps.Parameters
is not available
*/
val org.gradle.api.Project.`report`: Any get() =
(this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("report")