Skip to content

Commit

Permalink
Merge branch 'master' into extended-dependency
Browse files Browse the repository at this point in the history
Conflicts:
	GwtGrailsPlugin.groovy
	scripts/_GwtInternal.groovy
  • Loading branch information
David Dawson committed Dec 21, 2013
1 parent 8e322c5 commit d7b2220
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
2 changes: 1 addition & 1 deletion GwtGrailsPlugin.groovy
Expand Up @@ -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 = """\
Expand Down
21 changes: 17 additions & 4 deletions 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.
Expand All @@ -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
}
}
```

0 comments on commit d7b2220

Please sign in to comment.