in amazon-inspector-image-scanner/amazon-inspector-image-scanner-agent/src/main/java/com/amazon/inspector/teamcity/AbstractBuildProcessAdapter.java [39:57]
protected AbstractBuildProcessAdapter(
@NotNull final ArtifactsWatcher artifactsWatcher,
@NotNull final AgentRunningBuild build,
@NotNull final BuildRunnerContext context,
@NotNull final BuildProgressLogger progresslogger
) {
this.artifactsWatcher=artifactsWatcher;
this.build=build;
this.context=context;
this.runnerParameters = context.getRunnerParameters();
this.progressLogger = progresslogger;
this.workingRoot = build.getCheckoutDirectory();
this.reportingRoot = build.getBuildTempDirectory();
this.artifactsWatcher = artifactsWatcher;
this.isFinished = false;
this.isFailed = false;
this.isInterrupted = false;
}