I'm trying to use Apache Commons Configuration and using ant for my build tool. I have one namespaced class, and when ant builds it of course sub-directories. I need to put my .xml configuration file in the leaf directory (ie: ${build}/com/cross/xxx/). Is there an automated way to do this, or do I just manually configure the path of the leaf folder?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Check out the Ant
Of course, |
||||
|
You would store your xml in the required directory in your project, either with the source file or prefereably in a separate tree eg. resources/com/cross/xxx And simply copy the entire directory tree to your build directory |
|||
|
|