class ReloadableConfigGrailsPlugin { // the plugin version def version = "0.1" // the version or versions of Grails the plugin is designed for def grailsVersion = "1.1.1 > *" // the other plugins this plugin depends on def dependsOn = [:] // resources that are excluded from plugin packaging def pluginExcludes = [ "grails-app/views/error.gsp" ] def author = "Kapil Sachdeva" def authorEmail = "ksachdeva17@gmail.com" def title = "Grails Config Reloadable plugin" def description = '''\\ This plugin helps you having the external configuration files that can be reloaded and do not require web application re-start. ''' // URL to the plugin's documentation def documentation = "http://grails.org/ReloadableConfig+Plugin" def doWithSpring = { } def doWithApplicationContext = { applicationContext -> } def doWithWebDescriptor = { xml -> } def doWithDynamicMethods = { ctx -> } def onChange = { event -> } def onConfigChange = { event -> } }