"Vidhya CS" <[EMAIL PROTECTED]> wrote on 24/11/2003 10:01:19 PM:

> 
> > [EMAIL PROTECTED] wrote:
> >> With maven you declare your dependency on specific files (jars etc)
> >> rather
> >> than anything found in a directory.
> >
> > Yep.
> >
> >> Does this help? If not, give us some more info on what you need to 
do.
> >
> > Not really. It my fault for not giving a full picture of what
> > I'm trying to do. Here's the story.
> >
> > There are various property and xml files that my project requires at
> > runtime. Examples include log4j.xml, hibernate.xml etc. These files
> > do not live in the source tree (src/java) so as to prevent developers
> > commiting their preferences to CVS. Instead, each developer must
> > put, for example, log4j.xml in their $HOME directory and tweak it
> > according to their taste.
> >
> > So the problem I have is that I would like maven to include $HOME
> > in the path when it's running unit tests (in order to ensure that
> > the various property/xml files are loaded). Since we also use

If you want to have files on the classpath for tests, use the <resources> 
element of the <unitTest> element in your POM.

See http://maven.apache.org/reference/project-descriptor.html#resources

--
dIon Gillard, Multitask Consulting
Blog:      http://blogs.codehaus.org/people/dion/





---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to