I'm trying to create a Vaadin application to deploy on a tomcat server following the beginner's guide in the book of Vaadin. https://vaadin.com/book/-/page/getting-started.maven.html I used the Maven command line provided at this address. I can successfully create a Maven project, build it with mvn package and import it in eclipse. Once done, I can add it to my tomcat server and run it. When trying to connect to localhost http://localhost:8080/viznet/ (viznet being the project name) I get a this error : Requested resource [/VAADIN/widgetsets/viznet.MyAppWidgetset/viznet.MyAppWidgetset.nocache.js] not found from filesystem or through class loader. Add widgetset and/or theme JAR to your classpath or add files to WebContent/VAADIN folder. I would like to know a) why is this happening b) How can I solve it.
I did a lot of researches yet, found some alike problems but couldn't fix mine. It seems to me I can't get my project to use the default widget (or fix this particular one but the default widget would suit me just fine). There might be some error in my configuration or missing information here, I'm brand new to this so I don't know what you need to know in order to help me.
Environment: Ubuntu 14.04 Eclipse 4.1 Maven Latest Tomcat 8.0
Thanks in advance