trautonen / coveralls-maven-plugin

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

Integration question #55

Open dlsniper opened 10 years ago

dlsniper commented 10 years ago

Hi @trautonen,

Thanks for your work on this. I'm one of the maintainers of the golang plugin for IntelliJ IDEA which is written in Java. As we'd like to have this up and running I've took a look at this but I couldn't figure out how we can use it for our particular project. Do you have any hints on it? Thank you for your time and help.

Kind regards

trautonen commented 9 years ago

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 effort without changing the whole build system of your project would be to generate JaCoCo or Cobertura XML report "somehow" with your ant build and then create a minimal pom.xml to run the coveralls maven plugin which grabs the ant generated coverage reports and posts them to Coveralls.

I haven't done anything like this but hopefully this answer directs to the right path.