Re: Generating Test Sources

2007-10-26 Thread Insitu
This is not generally a good idea, as pointed out by Brandon, to p ut generated things under src/. The basic contract, I think,is that src/ is immutable and never written to by maven: everything is put in build directory; Regards, -- OQube software engineering \ génie logiciel Arnaud Bailly,

Generating Test Sources

2007-10-25 Thread Brandon Enochs
Where should plugins place generated test sources? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Generating Test Sources

2007-10-25 Thread Tomasz Pik
On 10/25/07, Brandon Enochs [EMAIL PROTECTED] wrote: Where should plugins place generated test sources? Choose an arbitrary named directory under ${project.build.directory, (${project.build.directory/generated/myplugin for example), put tests there and then add this directory to

Re: Generating Test Sources

2007-10-25 Thread Michael McCallum
why are you generating tests? On Friday 26 October 2007 08:52, Brandon Enochs wrote: Where should plugins place generated test sources? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Generating Test Sources

2007-10-25 Thread Lee Meador
I would use src/test/generated-source. But as Tomasz mentioned you have to add that folder to compileSourceRoot. (The antrun plugin will let you do that.) You can only add one folder to compileSourceRoot as I remember. On 10/25/07, Brandon Enochs [EMAIL PROTECTED] wrote: Where should plugins

Re: Generating Test Sources

2007-10-25 Thread Brandon Enochs
Michael McCallum wrote: why are you generating tests? On Friday 26 October 2007 08:52, Brandon Enochs wrote: Where should plugins place generated test sources? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Generating Test Sources

2007-10-25 Thread Brandon Enochs
Lee Meador wrote: I would use src/test/generated-source. But as Tomasz mentioned you have to add that folder to compileSourceRoot. (The antrun plugin will let you do that.) You can only add one folder to compileSourceRoot as I remember. On 10/25/07, Brandon Enochs [EMAIL PROTECTED] wrote: