The first things I notice is that you are using the extremely old version of maven-surefire-plugin (2.1.3, which refers to 2006)!), But the current version is 2.13.
In addition, you linked the cobertura-maven-plugin to the package phase with a message to the cobertura target, which is simply incorrect.
, cobertura-maven-plugin :
<properties>
<cobertura-maven-plugin.version>2.5.2</cobertura-maven-plugin.version>
</properties>
:
<project>
..
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>${cobertura-maven-plugin.version}</version>
</plugin>
...
</plugins>
</reporting>
</project>
, . , (pom, tests ..).