vaadin 7.1 core maven example

In an attempt to be have better community involvement I put together a sample project that demonstrates how one would create a core vaadin library for your shared projects that includes compiling your theme, common code and add-ons once and then using that jar in your war or ears.

SourceCode here : https://github.com/cropp/vaadinCore

Feed back is appreciated
And I hope it helps others

I didn’t really read through your project, but with a quick glimpse I noticed that it is using the latest version of the Vaadin plug-in for Maven, and the goal compile-theme is configured so you don’t need maven-execute-plugin to run the SASS compiler. Instead, it is enough to execute mvn vaadin:compile-theme, which is probably already automatically executed.

Thanks I’ll take a look to see if that can be removed to simplify things.