So far i\'ve added the following to my build.gradle
apply plugin: \'base\' clean << { delete \'${rootDir}/api-library/auto-generated-classes/\' pr
Gradle Kotlin Script analogue:
tasks { getByName("clean") { delete.add("logs") // add accepts argument with Any type } }