Maven Build Execution Time Breakdown
data class MavenBuildExecutionTimeBreakdown(@Json(name = "total" ) val total: Long, @Json(name = "goalExecution" ) val goalExecution: Long? = null, @Json(name = "endOfBuild" ) val endOfBuild: Long? = null)
The time breakdown of the execution phase of a Maven build.
Parameters
total
The elapsed time from the start of the execution of the first project to the end of the build in milliseconds.
goal Execution
The elapsed time from the start of the execution of the first project to the end of the execution of the last project in milliseconds. null
if the build failed before the goal execution phase.
end Of Build
The elapsed time from the end of the execution of the last project to the end of the build in milliseconds. null
if the build failed before the end of build phase.