2 Installation - Reference Documentation
Authors: Ondrej Kvasnovsky, Francis McKenzie
Version: 1.6.2.2-SNAPSHOT
2 Installation
Download the Plugin
The preferred method for installing plugins is to add a plugin dependency ingrails-app/conf/BuildConfig.groovy
, i.e.:plugins { // Other plugin dependencies here // . . . // . . . compile ':vaadin:1.6.2.2-SNAPSHOT' }
grails install-plugin vaadin 1.6.2.2-SNAPSHOT
Create the Application
After installing the plugin, you should run the following at the command line to create your Vaadin application:grails generate-vaadin-app com.somewhere.MyApp
Run the Application
If you now execute the following at the command line, you should see the default Grails home page - however note this is implemented in Vaadin, even though it (should) look identical to the standard home page provided by Grails!grails run-app