Does anybody know where to find the documentation for Grails 3.x's Gradle DSL?
I have seen it referenced, e.g in a separate post -> Disable reloading in Grails 3.1 / springloaded
However, can't find it in the docs, and the Grails Gradle plugin sites
https://github.com/grails/grails-gradle-plugin
http://grails.github.io/grails-gradle-plugin/docs/manual/
seems relevant only for the 2.x versions of Grails.
Edit
To be more clear.
What I'm looking for is the configuration options available within the grails block in a build.gradle script.
grails {
//which options are available here??
}
E.g. I know this specific config works, as it is mentioned in the post linked above
grails {
agent {
enabled = false
}
}
However, these config options are not documented anywhere (where I can find them)