> Hi Wayne. I have my build working fine, it's just not including the system > scoped jars in my war's WEB-INF/lib directory. It seems the system scope > does not include them. Any idea how I can get them into the resulting > artifact?
This is exactly how system scope is supposed to work -- it means "this artifact will be provided by the system" therefore Maven does not include them in packages it builds. Add the artifacts to your corporate repo/local repo cache, and change scope to "compile" if you need them included. As I've said before in this thread, do NOT use system scope. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
