I have all the images stored inside webapp/resources folder:
|-src-
|-client
...
|-webapp-
|-resources
|-images
|abc.png
Inside client folder, I have following:
public interface Images extends ClientBundle {
@Source( "abc.png" )
ImageResource abcButton();
...
}
Obviously, this does not work. I am trying to reference the file abc.png file in my program. I tried by adding webapp/resources/images/ in buildpath, but that did not work.
I do not want to put images file inside src folder, so just looking for alternatives.