Starting from this build, the build command of mvn clean cobertura:cobertura coveralls:report in .travis.yml failed. Hence the coveralls stats was not updated since this commit.
Error message:
[ERROR] Failed to execute goal org.codehaus.mojo:cobertura-maven-plugin:2.7:instrument (default-cli) on project java-string-similarity: Execution default-cli of goal org.codehaus.mojo:cobertura-maven-plugin:2.7:instrument failed: Plugin org.codehaus.mojo:cobertura-maven-plugin:2.7 or one of its dependencies could not be resolved: Could not find artifact com.sun:tools:jar:0 at specified path /usr/local/lib/jvm/openjdk11/../lib/tools.jar -> [Help 1]
Turned out it was because the cobertura-maven-plugin is not supporting java 8 and beyond. False alarm? Consider JaCoCo instead?
Starting from this build, the build command of
mvn clean cobertura:cobertura coveralls:report
in .travis.yml failed. Hence the coveralls stats was not updated since this commit.Error message: [ERROR] Failed to execute goal org.codehaus.mojo:cobertura-maven-plugin:2.7:instrument (default-cli) on project java-string-similarity: Execution default-cli of goal org.codehaus.mojo:cobertura-maven-plugin:2.7:instrument failed: Plugin org.codehaus.mojo:cobertura-maven-plugin:2.7 or one of its dependencies could not be resolved: Could not find artifact com.sun:tools:jar:0 at specified path /usr/local/lib/jvm/openjdk11/../lib/tools.jar -> [Help 1]
Turned out it was because the cobertura-maven-plugin is not supporting java 8 and beyond. False alarm? Consider JaCoCo instead?