resolveStateFilePath method
Implementation
String resolveStateFilePath(String projectRootPath) {
if (PathUtils.isAbsolute(stateFile)) {
return PathUtils.normalize(stateFile);
}
return PathUtils.normalize(PathUtils.join(projectRootPath, stateFile));
}