Get your own customer support community
 

Unit tests for chapter 4 don't build. Missing dependency on commons io

The unit tests for the example in chapter 4 depend on apache commons io, which is not specified in the pom. I had to add the following to the pom:

<dependency>
<groupid>org.apache.commons</groupid>
<artifactid>commons-io</artifactid>
<version>1.3.2</version>
<scope>test</scope>
</dependency>
 
sad
Inappropriate?
1 person has this problem

The company thinks this is not a problem.


User_default_medium