<@U5C5W37QV> the accessors seem to be generated on...
# gradle
m
@ggr the accessors seem to be generated only to plugins projects for which the plugins are applied to in that kotlin-dsl version (they used to be generated statically and differently) so, since you aren’t applying the plugin to that rootproject, they arent available
g
@ggr Yep, that’s correct. Probably it will be fixed, Rodrigo mentioned that in this channel. As workaround to configure subprojects you can use dynamic syntax
"compile"(...)
instead
compile(...)
g
thx