I am having trouble setting global properties in build.gradle.kts Example presented in open api generator plugin looks like this
openApiGenerate {
// other settings omitted
globalProperties = [
modelDocs: "false",
apis: "false"
]
}
Above code is supposed to be used in build.gradle. I am trying to put it in build.gradle.kts file with no luck so far. I am using org.openapi.generator 4.3.1 plugin. How can i convert it to kotlin?