Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Maven suggests 'resources' to be placed in

src/main/resources

directory.

For webapps sources, it suggests

src/main/webapp

I find it a little confusing. My web-app would need images and css files.

Should I place them in

src/main/resources/img
src/main/resources/css

or in

src/main/webapp/img
src/main/webapp/css

Which would be appropriate (as per maven conventions) ?

Thanks !

share|improve this question

1 Answer

up vote 2 down vote accepted

If its a webapp you need to place it under webapp directory. The resources maven documentation talks about is application level resources like property files, logging configuration etc...

share|improve this answer
thanks for clarifying ! – stratwine Apr 25 '11 at 20:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.