Package io.quarkus.jacoco.runtime
Class JacocoConfig
java.lang.Object
io.quarkus.jacoco.runtime.JacocoConfig
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe jacoco data file.booleanWhether or not the jacoco extension is enabled.A list of class files to exclude from the report.Footer text used in HTML report pages.A list of class files to include in the report.static final Stringstatic final StringEncoding of the generated reports.booleanIf Quarkus should generate the Jacoco reportThe location of the report files.booleanWhether to reuse (true) or delete (false) the jacoco data file on each run.Encoding of the source files.static final Stringstatic final StringName of the root node HTML report pages. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
JACOCO_QUARKUS_EXEC
- See Also:
-
JACOCO_REPORT
- See Also:
-
TARGET_JACOCO_QUARKUS_EXEC
- See Also:
-
TARGET_JACOCO_REPORT
- See Also:
-
enabled
Whether or not the jacoco extension is enabled. -
dataFile
The jacoco data file. The path can be relative (to the module) or absolute. -
reuseDataFile
Whether to reuse (true) or delete (false) the jacoco data file on each run. -
report
If Quarkus should generate the Jacoco report -
outputEncoding
Encoding of the generated reports. -
title
Name of the root node HTML report pages. -
sourceEncoding
Encoding of the source files. -
includes
A list of class files to include in the report. May use wildcard characters (* and ?). When not specified everything will be included.For instance:
**/fo/**/*targets all classes under fo and sub packages**/bar/*targets all classes directly under bar**/*BAR*.classtargets classes that contain BAR in their name regardless of path
-
excludes
A list of class files to exclude from the report. May use wildcard characters (* and ?). When not specified nothing will be excluded.For instance:
**/fo/**/*targets all classes under fo and sub packages**/bar/*targets all classes directly under bar**/*BAR*.classtargets classes that contain BAR in their name regardless of path
-
reportLocation
The location of the report files. The path can be relative (to the module) or absolute.
-
-
Constructor Details
-
JacocoConfig
public JacocoConfig()
-