HELP! Problem - ua.dbproject.tt.tt.MyAppWidgetset.nocache.js not found

Problem when try to connect to the localhost:8080 from web browser:
INFO: Requested resource
[/VAADIN/widgetsets/ua.dbproject.tt.tt.MyAppWidgetset/ua.dbproject.tt.tt.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.

It’s strange becouse it began to appear on the 6th vide of the tutorial, and even if i try to import current or release version from GIT - problem stays.

Vaadin version - 7.6.8.
OS - Linux Mint 17.2 x64 and Windows 8.1 (problem the same)
IDE - Eclipse Java EE Neon

Please help!

Try to compile the widgetsets set again and see any difference.

If you are using maven please use this,
mvn clean vaadin:update-widgetset vaadin:compile

/Chatura

Chatura - Thanks!
Fixed issue with uncomenting in pom.xml:

    <dependency>
        <groupId>com.vaadin</groupId>
        <artifactId>vaadin-client-compiler</artifactId>
        <scope>provided</scope>
    </dependency>

Than run afain on the project Run as - maven install.
And than debug project and it worked!

Also, check, that in MyUI.class you have “@Widgetset(”
<your_project_name>
.MyAppWidgetset")".