Problem with Add-on MaskedTextField

Hi,

I am trying to get the nice looking add-on
MaskedTextField
from Anderson Freitas running. Unfortunately I get an error when I try the sample application (via copy / paste into my application class):



Failed to load the widgetset: /playground/VAADIN/widgetsets/eu.sample.playground.MyVaadinApplicationWidgetSet/eu.sample.playground.MyVaadinApplicationWidgetSet.nocache.js?1350938979094

I used maven (vaadin-archetype-clean) for this exsample and I configured the add-on in the pom.xml:




com.vaadin
vaadin
${vaadin.version}


org.vaadin.addons
maskedtextfield
0.1.1


com.google.gwt
gwt-user
${gwt.version}
provided


javax.validation
validation-api
1.0.0.GA
provided


javax.validation
validation-api
1.0.0.GA
sources
provided


The web.xml looks like this:


<web-app …>
Vaadin Web Application

Vaadin production mode
productionMode
false


Vaadin Application Servlet
com.vaadin.terminal.gwt.server.ApplicationServlet

Vaadin application class to start
application
eu.sample.playground.MyVaadinApplication


widgetset
eu.sample.playground.MyVaadinApplicationWidgetSet



Vaadin Application Servlet
/*


I have compiled all using the following command
mvn vaadin:update-widgetset install
.

Does somebody have an idea?

Cheers,
Daniel

Well, I solved it by my one … I forgot to add the target/VAADIN folder to the deployment of my WTP/Eclipse …