On 10/15/05, Matt Raible <[EMAIL PROTECTED]> wrote: > This seems to work, but I've had to exclude a lot of dependencies in > order to trim the JARs down to what I had previous with > all-jars-in-CVS. The one I can't seem to get rid of is > servlet-api-2.4.jar. Is there a quick way to find out which > dependency is causing it to be included?
verbose="true" shows the dependency tree. Probably what you want to do is use it for compiling, so you should explicitly include it, but set the scope as "provided". We're aware there are plenty of optional dependencies listed in the repository for projects previously built with Maven 1.x. We're steadily improving them, and have one big set of changes to apply. We figured starting with that and excluding was a better alternative to starting with nothing - thanks for your help in reporting the issues. Cheers, Brett --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
