On 10/6/06, Ian Brandt <[EMAIL PROTECTED]> wrote:
Thanks for the suggestion, but unfortunately that seems to exclude the resources from the build entirely. I want them to be filtered and copied to the target/classes directory (so they're on the classpath when debugging), and included in my distribution assembly, just outside of the the Jar.
Try adding a profile to your build that copies the files into 'classes'. You'll use this during debugging (not sure what that means, exactly...). Then when you're ready to relase or deploy the jar, leave off the profile, and you won't get the files. You'll need to be sure to 'mvn clean' before building the jar to release, or it might still contain the unwanted files. -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
