Leandro Borges Ferreira
05/31/2021, 1:47 PMval customDokkaTask by creating(DokkaTask::class) {
dependencies {
plugins("org.jetbrains.dokka:kotlin-as-java-plugin:1.4.32")
}
}
But what would be the same in groovy?
This:
tasks.register('dokkasaurus', DokkaTask) {
dependencies {
plugins = classpath Dependencies.dokkasaurus
}
}
Doesn’t work… I just the
Cannot set the value of read-only property 'plugins' for task .......