public class BuildFolderPaths
extends java.lang.Object
| Constructor and Description |
|---|
BuildFolderPaths() |
| Modifier and Type | Method and Description |
|---|---|
void |
addBuildFolderMapping(java.lang.String buildId,
java.lang.String moduleGradlePath,
java.io.File buildFolder)
Stores the "build" folder path for the given module.
|
java.io.File |
findBuildFolderPath(java.lang.String moduleGradlePath,
java.lang.String buildId)
Finds the path of the "build" folder for the given module path and build id.
|
void |
setRootBuildId(java.lang.String rootBuildId)
Set the build identifier of root project.
|
public void setRootBuildId(@NonNull
java.lang.String rootBuildId)
rootBuildId - build identifier of root project.public void addBuildFolderMapping(@NonNull
java.lang.String buildId,
@NonNull
java.lang.String moduleGradlePath,
@NonNull
java.io.File buildFolder)
buildId - build identifier of the project.moduleGradlePath - module's gradle path.buildFolder - path to the module's build directory.@Nullable
public java.io.File findBuildFolderPath(@NonNull
java.lang.String moduleGradlePath,
@Nullable
java.lang.String buildId)
moduleGradlePath - the gradle path of module.buildId - build identifier of included project of the module.null if the
path or build id is not found.