Index: GwtGrailsPlugin.groovy =================================================================== --- GwtGrailsPlugin.groovy (revision 41649) +++ GwtGrailsPlugin.groovy Wed Jul 02 00:44:24 MDT 2008 @@ -124,8 +124,15 @@ } def doWithDynamicMethods = { ctx -> + application.serviceClasses.each { serviceWrapper -> + def packageName = getPackage(serviceWrapper) + if (packageName != null) { + WebMetaUtils.registerCommonWebProperties(serviceWrapper.clazz.metaClass, application) - } + } + } + } + def onChange = { event -> if (application.isServiceClass(event.source)) { // A service has been modified (or created).