The cobertura-maven-plugin version 2.7 complains not to find tools.jar! The log tells me that the plugin is searching com.sun.tools.jar at specified path C:\Program Files\Java\jdk-10.0.1/../lib/tools.jar! Of course at this location no tools.jar can be found. I declared the dependency of tools.jar within the pom, which results within the effective pom as:
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>1.8.0</version>
<scope>system</scope>
<systemPath>C:\PROGRA~1\Java\jdk1.8.0_172\lib\tools.jar</systemPath>
</dependency>
This SystemPath is correct. Nowhere in my declarations I can find a declaration of tools.jar being under jdk-10 directory. So the source of the issue my be in the corbertura maven plugin. Does anybody know more about this?