Sometimes, we need a lot of dependencies and libraries to build a software and sometimes we need different version of same library and dependency. It is easier to install these dependencies when the list is small, but this list can grow out of hand very quickly and we need to install a lot of dependencies just for that 10 line of important code. And sometimes these dependencies conflicts with other systems or libraries. Continue reading
Category: Uncategorized
Creating Code Coverage reports with JaCoCo Maven Plugin
Oh Boy! Setting up Coverage for a project, Yes it is quite daunting task and getting everything right will take some tweaking and planning. In this post we will explore on how we can use JaCoCo maven plugin to create code coverage for both Unit Tests and Integration Tests.