i have created a nice multi-module project using maven, but now i am wondering what the best place would be to store property files that shared accross modules. To give an example i have 4 modules all needing a log4j.properties file, do i need to put it in every module or is there a central place in which to put this?

link|improve this question

73% accept rate
feedback

1 Answer

If you have a parent project, this would be the best place.

Otherwise a module that is included by each other module.

Put the log4j.properties into /src/main/resources

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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