On Tue, Dec 30, 2008 at 9:47 AM, idan72 <[email protected]> wrote: > I have project of RFT where the source code is under two directories : com , > resources . > Both directories include java source code and other files generated by RFT. > > How can I compile both directories into the target directory ? > Can I tell maven to put the .class file in the same splace as the .java file > for both com,resources ?
The Build Helper plugin can add additional source directories: http://mojo.codehaus.org/build-helper-maven-plugin/usage.html If there are non-Java resources that you need copied in, you may need to configure <resources> to pick them up. -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
