If you want to define the plugin config in [application|runtime].groovy in a block, Intellij IDEA complains " Modifier 'default' is available with Groovy 3.0 or later".
Maybe rename default to "defaults" to get rid of this config property error.
Example:
grails {
mail {
default {
from = "someone@mydomain.local"
}
}
}
If you want to define the plugin config in [application|runtime].groovy in a block, Intellij IDEA complains " Modifier 'default' is available with Groovy 3.0 or later".
Maybe rename default to "defaults" to get rid of this config property error.
Example: