From d7b2220bb12c1459ca374f75781092865c58b473 Mon Sep 17 00:00:00 2001 From: David Dawson Date: Sat, 21 Dec 2013 22:13:47 +0000 Subject: [PATCH] Merge branch 'master' into extended-dependency Conflicts: GwtGrailsPlugin.groovy scripts/_GwtInternal.groovy --- GwtGrailsPlugin.groovy | 2 +- README.md | 21 +++++++++++++++++---- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/GwtGrailsPlugin.groovy b/GwtGrailsPlugin.groovy index debe512..ba3cc2a 100644 --- a/GwtGrailsPlugin.groovy +++ b/GwtGrailsPlugin.groovy @@ -19,7 +19,7 @@ import org.codehaus.groovy.grails.plugins.gwt.DefaultGwtServiceInterfaceGenerato import org.codehaus.groovy.grails.web.plugins.support.WebMetaUtils class GwtGrailsPlugin { - def version = "1.0-SNAPSHOT" + def version = "1.0" def grailsVersion = "2.0 > *" def title = "The Google Web Toolkit for Grails." def description = """\ diff --git a/README.md b/README.md index 63895df..c91a155 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,6 @@ -Grails GWT Plugin -================= +# Grails GWT Plugin -Introduction -============ +## Introduction The Google Web Toolkit (GWT) is an advanced AJAX framework that allows you to develop rich user interfaces in Java, thus taking advantage of type-checking and code re-use. GWT will then compile your Java code and generate fast, cross-platform Javascript that can be included in any web page you choose. The plugin makes it easy to incorporate GWT code into your GSP pages, and it also simplifies the handling of RPC requests on the server. If you have not used GWT before, please read the documentation on the GWT website. @@ -15,3 +13,18 @@ The plugin host page is at http://grails.org/plugin/gwt Documentation can be found at http://simplicityitself.github.com/grails-gwt/guide/ The Google Group can be found at https://groups.google.com/group/grails-gwt + + +## Installation + +Add the plugin, plus the extended-dependency-manager plugin for accessing the current dependency manager. + +``` +plugins { + build ":extended-dependency-manager:0.5.5" + compile ":gwt:1.0", { + transitive=false + } +} +``` +