7

I have an Eclipse GWT project with two source folders: One for source code and one for resources. This should and does work fine, but nevertheless Eclipse shows the following error message:

Resource file style.css is missing (expected at com.example.gwt.client)

If have the a class Resources in my source code source folder:

package com.example.gwt.client;

import com.google.gwt.resources.client.*;

interface Resources extends ClientBundle {
    @Source("style.css")
    Style style();
}

The references CSS file is in the same package in the source folder I use for resources.

It's not really a problem, since it definitely works, but I would like to get rid of the error message in any case, it's making me nervous. Any ideas?

futlib
  • 8,258
  • 13
  • 40
  • 55

1 Answers1

8

See this GWT issue. Configure the resources folder as a source folder in Eclipse and the errors in the editor will go away.

Jason Terk
  • 6,005
  • 1
  • 27
  • 31
  • 1
    Maven automatically added it as a source folder, that didn't help. However, removing, adding it again and then updating Maven project information did the trick. – futlib Feb 28 '11 at 06:28
  • 2
    Also be sure that exclusion patterns is empty for resources path – AppLend Mar 20 '14 at 06:41