I have a maven gwt project, and I’m using ClientBundle to package my image resources within the project. I would like to place the images in /src/main/resources as should be done in maven instead of src/main/java/com/mycompany/myproject/client as gwt wants.
Is there any way I can achieve this?
Thank you,
Sammy
I got it; I can place the image at
src/main/resources/com/mycompany/myproject/clientand it will be resolved correctly 😉