Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How build Vaadin project with gradle?

Tags:

gradle

vaadin

I have gradle project (backend) and I want to add Vaadin-based frontend. But I haven't find any gradle-plugins for Vaadin.

like image 579
Mark Avatar asked Dec 12 '22 06:12

Mark


1 Answers

While, as was already mentioned above, Vaadin app is a simple web application and does not require any additional plugins but "java" and "war" (and maybe "jetty" to run the app), currently there seems to be the first vaadin-specific gradle plugin available:

https://github.com/johndevs/gradle-vaadin-plugin

It will help you with Vaadin-specific task like building widgetsets, creating components skeletons, etc.

like image 131
Dmitri Livotov Avatar answered Dec 14 '22 23:12

Dmitri Livotov