tags:

views:

470

answers:

1

Hello, 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

A: 

I got it; I can place the image at src/main/resources/com/mycompany/myproject/client and it will be resolved correctly ;)

Sammy