From 35c7f1dfb60e03284d43caf7e42dc3ea1aa7b1ed Mon Sep 17 00:00:00 2001 From: Rob Purcell Date: Sat, 16 Jun 2012 13:14:06 +0100 Subject: [PATCH] Basic upgrade to Grails 2.0.4 --- GwtGrailsPlugin.groovy | 17 ++++++----------- application.properties | 6 +++--- grails-app/conf/Config.groovy | 4 +++- 3 files changed, 12 insertions(+), 15 deletions(-) diff --git a/GwtGrailsPlugin.groovy b/GwtGrailsPlugin.groovy index 7914af4..f05a822 100644 --- a/GwtGrailsPlugin.groovy +++ b/GwtGrailsPlugin.groovy @@ -14,22 +14,13 @@ * limitations under the License. */ -import java.beans.Introspector -import java.beans.PropertyDescriptor -import java.lang.reflect.Method -import java.lang.reflect.Modifier -import org.apache.commons.io.FileUtils -import org.codehaus.groovy.grails.commons.GrailsClassUtils import org.codehaus.groovy.grails.plugins.gwt.ActionHandlerArtefactHandler import org.codehaus.groovy.grails.plugins.gwt.DefaultGwtServiceInterfaceGenerator -import org.codehaus.groovy.grails.plugins.gwt.GwtServiceInterfaceGenerator import org.codehaus.groovy.grails.web.plugins.support.WebMetaUtils class GwtGrailsPlugin { - def version = "0.7" - def grailsVersion = "1.1 > *" - //def author = "Peter Ledbrook" - //def authorEmail = "peter@cacoethes.co.uk" + def version = "0.8-SNAPSHOT" + def grailsVersion = "2.0 > *" def title = "The Google Web Toolkit for Grails." def description = """\ Incorporates GWT into Grails. In particular, GWT host pages can be @@ -39,6 +30,10 @@ requests. def issueManagement = [ system: "JIRA", url: "http://jira.grails.org/browse/GPGWT" ] def documentation = "http://www.grails.org/plugin/gwt" def scm = [url:"https://github.com/dawsonsystems/grails-gwt"] + + def license = "APACHE" + + def observe = [ "services" ] def watchedResources = "file:./grails-app/actionHandlers/**/*ActionHandler.groovy" def artefacts = [ ActionHandlerArtefactHandler ] diff --git a/application.properties b/application.properties index b9e67d0..c7c65d2 100644 --- a/application.properties +++ b/application.properties @@ -1,5 +1,5 @@ #Grails Metadata file -#Tue Jul 31 16:44:40 BST 2012 -app.grails.version=2.0.3 +#Sat Jun 16 09:06:45 BST 2012 +app.grails.version=2.0.4 app.name=grails-gwt -plugins.tomcat=2.0.3 +plugins.tomcat=2.0.4 diff --git a/grails-app/conf/Config.groovy b/grails-app/conf/Config.groovy index 115f46e..b456728 100644 --- a/grails-app/conf/Config.groovy +++ b/grails-app/conf/Config.groovy @@ -1 +1,3 @@ -grails.doc.authors="Peter Ledbrook, David Dawson, Rob Purcell, Predrag Knežević" \ No newline at end of file +grails.doc.authors="Peter Ledbrook, David Dawson, Rob Purcell, Predrag Knežević" +grails.views.default.codec="none" // none, html, base64 +grails.views.gsp.encoding="UTF-8"