Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Unable to use add-ons: Widgetset does not contain implementation
Hi,
I'm facing a critical problem in my Vaadin project (which has otherwise worked fine so far).
I'm unable to use any add-on, I'm following the very simple instructions for the Eclipse plugin, but when running the application always get the dreaded error:
Widgetset does not contain implementation for ...
The add-on in case is the GoogleAnalytics one if it matters, but the problem happens with any other add-on.
There seems to be something not quite right with the Eclipse plugin, or the project. After dragging the add-on jar to Eclipse, it will offer to recompile the widgetset as expected but will also ask:
Select a location in which a widgetset should be created
is that normal?
Also, the message
Your client side code in the project might need a recompilation
never seems to go away.
The xml file generated for the widgetset looks like this:
<module>
<inherits name="com.vaadin.terminal.gwt.DefaultWidgetSet" />
<inherits name="org.batista.MyprojectWidgetset" />
<inherits name="org.vaadin.googleanalytics.tracking.GoogleAnalyticsWidgetset" />
</module>
The page at Using Vaadin Add-ons does not offer much guidance...
Any help to solve or debug this is much appreciated.
Thanks
Ok, after taking a look at the instructions for Maven here (although I'm not using Maven), I manually added the following to web.xml, and things appear to be working now:
<init-param>
<param-name>widgetset</param-name>
<param-value>org.batista.myproject.widgetset.MyprojectWidgetset</param-value>
</init-param>