Search code examples
grailsvaadingrails-plugin

Grails & Vaadin plugin - how to get latest version of Vaadin?


I am using this plugin http://www.grails.org/plugin/vaadin and the plugin supports only Vaadin version 6.5.1.

  1. Is there any way how to upgrade Vaadin version to the latest one (e.g. 6.7.3)?

  2. And maybe even more, is it anyhow possible to use Vaadin 7 (7.0.0-aplha...) together with Grails-Vaadin plugin? I know it is not stable release, but it would be great to start working with that version.


Solution

  • I think you could checkout the plugin's sources or download it as a zip-file, extract and then include it as inplace plugin into your project:

    // Add in BuildConfig.groovy of your project.
    grails.plugin.location.vaadin = '../path/to/vaadin'
    

    After that you could do any manipulations to upgrading the plugin to required version of Vaadin.