Description
Currently, log4j-web includes junit, spring-test and easymock are present as test dependencies. Unfortunately these dependencies are propagated to the outside. So please add <scope>test</scope> to all test dependencies like this:
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<scope>test</scope>
</dependency>
Thanks, Philip