Copy target file from another module

2010-07-21 Thread Will Hoover
I have a multi-module project where one of the modules needs to copy internally generated file(s) that do not come from any maven-aware resources from a module to a WAR module for inclusion. The following works, but it seems like a hack using directory to get to the module where the file(s) exist.

Re: Copy target file from another module

2010-07-21 Thread Thomas Sundberg
Hi! Why not do it the Maven way and create a module with the generated sources and make the other (2?) modules dependant of it? This would eliminate the need of a hack that copy files from one module to another. /Thomas On Wed, Jul 21, 2010 at 15:49, Will Hoover java.whoo...@gmail.com wrote: I

Re: Copy target file from another module

2010-07-21 Thread Thomas Markus
Hi, create a war with your generated sources and use it as a war overlay regards Thomas Am 21.07.2010 15:49, schrieb Will Hoover: I have a multi-module project where one of the modules needs to copy internally generated file(s) that do not come from any maven-aware resources from a module

RE: Copy target file from another module

2010-07-21 Thread Will Hoover
target file from another module Hi, create a war with your generated sources and use it as a war overlay regards Thomas Am 21.07.2010 15:49, schrieb Will Hoover: I have a multi-module project where one of the modules needs to copy internally generated file(s) that do not come from any maven

RE: Copy target file from another module

2010-07-21 Thread Will Hoover
Of Thomas Sundberg Sent: Wednesday, July 21, 2010 10:02 AM To: Maven Users List Subject: Re: Copy target file from another module Hi! Why not do it the Maven way and create a module with the generated sources and make the other (2?) modules dependant of it? This would eliminate the need of a hack