Tag Archives: gradle

Using test fixtures in Gradle and Maven

In Maven if you want to reuse text fixtures from one module in another module, you use the jar plugin and build a test jar. You have to specify what classes and other resources to include. Gradle has a dedicated … Continue reading

Posted in Gradle, Java | Tagged , | Leave a comment

Code coverage with Gradle and Jacoco

Recently I’ve been trying to configure code coverage with Gradle and Jacoco. I started on the official docs page here: https://docs.gradle.org/current/userguide/jacoco_plugin.html However, this page wasn’t that helpful. One key requirement I have is that I want to be able to … Continue reading

Posted in Gradle | Tagged | Leave a comment