https://issues.apache.org/bugzilla/show_bug.cgi?id=50801
--- Comment #4 from Nick Burch <[email protected]> 2011-02-21 06:43:49 EST --- The commons logging thing is a "this is what you need to begin using" vs "this is what you need to do everything" thing. IIRC, it has a few methods in there to work well with some servlet stuff, but to use that you end up pulling in avalon... One fix is to add this to the commons logging dependency line: <exclusions> <exclusion> <groupId>avalon-framework</groupId> <artifactId>avalon-framework</artifactId> </exclusion> <exclusion> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </exclusion> </exclusions> The other is to move to commons-logging 1.1.1, which apparently correctly marked those ones as being optional rather than required (see https://issues.apache.org/jira/browse/LOGGING-113). I'd say probably this is the right fix, is someone able to verify that? -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
