Re: Using resource plugin -- why do my resources end up in classes/ ?

2008-05-14 Thread matthew sporleder
Is there any reason why these files shouldn't be considered binaries by the assembly plugin? I'm now running into a problem where my "binaries" are getting included in the zip file I create, but my resources are not. Do I need to explicitly include the mas files, or is there an option within the

Re: Using resource plugin -- why do my resources end up in classes/ ?

2008-05-13 Thread matthew sporleder
Thanks, that worked perfectly. On Tue, May 13, 2008 at 1:17 PM, Kalle Korhonen <[EMAIL PROTECTED]> wrote: > I'd separate out those resources from classpath resources by putting them > into a different dir. Then use: > > src/main/data > .. > > > Or, i

Re: Using resource plugin -- why do my resources end up in classes/ ?

2008-05-13 Thread Kalle Korhonen
I'd separate out those resources from classpath resources by putting them into a different dir. Then use: src/main/data .. Or, if you bind resources plugin yourself like you did below, use: ${basedir}/target

Using resource plugin -- why do my resources end up in classes/ ?

2008-05-13 Thread matthew sporleder
How can I change the outputDirectory for all of my modules which include the following: org.apache.maven.plugins maven-resources-plugin 2.2 compile resources Currently my resources/* are being copied to target/clas