Weird error from the Eclipse GWT plugin when having a separate source folder for resources

2.7k views Asked by At

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?

1

There are 1 answers

2
Jason Terk On BEST ANSWER

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