pluginConfig
This read-only property is added to all Grails artefacts provided by plugins.Artefacts can use this to access the configuration values that pertain to their plugin only.Example:class MyPluginService {
def doSomething() {
if (pluginConfig.enabled) {
println "It worked!"
}
}
}