On 6/23/06, Steve Menke <[EMAIL PROTECTED]> wrote:
I am using maven 2.0 to build a jar file of applet classes. I need to include this output as resource / file in a web application which is also built with maven 2.0. Does anyone know the best and hopefully easiest way of doing this?
In the webapp module, declare a dependency on your applet jar, and Maven will include it in WEB-INF/lib. Make sure you build the applet jar with 'mvn install' (not just 'mvn package') so it will be present in your local repository. -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
