According to the docs, you can add an image resource to be used in a uibinder template like this:
public interface Resources extends ClientBundle {
@Source("Logo.jpg")
ImageResource logo();
...
}
Using this example as is, however, the image file (Logo.jpg) must be included in the same directory/package as Resources.java. Where should I put my image file and how should I list the file path so that I don't have to keep the image file in my src tree? Specifically, I'm using maven - don't I want my images in src/main/webapp, not in src/main/java/com/mygwtapp/client?