I have just upgraded the project to use latest vaadin version 6
After changing the vaadin version to 6.8.17 -
I tried recompiling the Widgetset
vaadin:update-widgetset &
gwt:compile
I could see the files generated with the latest timestamp under - the project/…/src/main/webapp/VAADIN/widgetsets
Cleared browser cache,
Restarted the jetty
But when the webpage which uses the widgetset loads, the browser is throwing the error -
Widgetset does not contain implementation XXXXX heck its @ClientWidget mapping, widgetsets GWT module description file and re-compile your widgetset. In case you have downloaded a vaadin add-on package, you might want to refer to add-on instructions. Unrendered UIDL:
-Unrendered UIDL
I guess you have already tried to delete the whole src/main/webapp/VAADIN/widgetsets directory.
Do you use some addon from directory that could be incompatible with the new vaadin version?
Does the widgetset compilation give some kind of error or warnings?
The goal vaadin:update-widgetset scan the classpath to find available widgetsets and then updates the .gwt.xml file.
Seems like that your own widgetset is not fount on classpath; according to the log you posted also the MaskedTextField addon seems not to be on classpath.
BTW, if update-widgetset is not configured to automatically run you should invoke it before gwt:compile
mvn clean compile vaadin:update-widgetset gwt:compile package jetty:run
HTH
Marco
So seems like your XXXX addon is not found during scan.
Please, forgive the silly question: is the MANIFEST file of your addon correctly filled with vaadin entries?
All seem ok, I can’t figure out wath is happening.
Did you tried yo use -X flag when launching vaadin:update-widgetset or gwt:compile? Maybe this can give some additional information