skipProjects

open fun skipProjects(vararg projects: String)(source)

Specify projects, classes and tests from which will not be included in the reports.

This means that all classes declared in these projects will be excluded from the report, as well as all test tasks will not be instrumented - accordingly, coverage of them will not be taken into account.

Several project name syntaxes are supported:

  • project name

  • full path (starts with the symbol :)

  • abbreviated path (does not start with :, but contains the path separator :)

skipProjects(":project1", "project2", "nested:subproject")

abstract val skipProjects: SetProperty<String>(source)

Set of projects, classes and tests from which will not be included in the reports.

See details in skipProjects.