trautonen / coveralls-maven-plugin

Maven plugin for submitting Java code coverage reports to Coveralls web service.
MIT License
312 stars 123 forks source link

Add option to not fail the build when a processing exception occurs #122

Open tomdesair opened 6 years ago

tomdesair commented 6 years ago

Currently there is already the failOnServiceError option which will prevent the build from failing if there is a network connection problem.

However, we never want the Coveralls plugin to fail the build when submitting data (e.g. when the API token is missing or invalid). Therefore we need a failOnProcessingError option, which by default is true. If the option is set to false, Processing exceptions should only result in a warning.

tomdesair commented 6 years ago

I've created a pull-request for this here https://github.com/trautonen/coveralls-maven-plugin/pull/123