Добавьте следующий тег в pom
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.1</version>
<scope>test</scope>
</dependency>
Добавьте следующий тег в
<testSourceDirectory>D:\eclipse_workspace\Utils_project\test_filelister</testSourceDirectory>
Добавьте следующий код в плагины
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.11</version>
<configuration>
<test>**/*.java</test>
</configuration>
</plugin>