I have a multi-module project like lets say below:
Project
|-- DataModule
|-- LogicModule
|-- ServiceClientModule
In this project the service client will just implement calls to any services I'm calling and DataModule will just be data classes. Currently jacoco considers all of these modules. Is there a way to exclude complete modules like DataModule or ServiceClientModule since there's no need for UTs in both those cases?