Tapio Rautonen
Tapio Rautonen
Hi, chiming in... Sadly I haven't had time to look into this, but maybe I could try spending couple of days setting up github actions for automatic releases and such....
Sorry for being inactive. I don't sadly have time and interest to maintain this anymore so I appreciate your work @hazendaz. I added a deprecation note to the readme and...
@hazendaz great, if they check this repo and notice the deprecated note I would assume they to do the link change on their website.
Good discussion. As far as I can see the implementation of the Gradle plugin can be replicated to this plugin. Does it make sense? That I don't know, because I'm...
Never heard before of such issue with git logs. I haven't tested Travis Pro so cannot say much about it. The plugin tries to resolve git metadata by looking `${project.basedir}`...
At the moment I don't have time to investigate this much further. There seems to be discussion about the certificates at Travis issue tracker too: https://github.com/travis-ci/travis-ci/issues/7094
Most likely the Coveralls API was down when the report submission happened. The error message from the plugin was not good at all and the error messages were improved in...
With Cobertura this should be possible (and also possible with JaCoCo, but requires a lot more effort). You should run Cobertura in aggregate mode and it will generate an aggregated...
It seems that you have ant build in your project. The coveralls maven plugin is solely designed for maven builds and might be tricky to use with ant. With minimal...
Make sure you have configured Cobertura correctly. You need to use XML format in the reports: ``` xml xml true ``` The `aggregate` property is not mandatory, but suggested for...