object BuildLoader
- Alphabetic
- By Inheritance
- BuildLoader
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
def
load(configDir: AbsolutePath, logger: Logger): Task[List[Project]]
Load all the projects from
configDir
in a parallel, lazy fashion via monix Task.Load all the projects from
configDir
in a parallel, lazy fashion via monix Task.- configDir
The base directory from which to load the projects.
- logger
The logger that collects messages about project loading.
- returns
The list of loaded projects.
-
def
loadBuildFromConfigurationFiles(configDir: AbsolutePath, configFiles: List[ReadConfiguration], logger: Logger): Task[List[Project]]
Load only the projects passed as arguments.
Load only the projects passed as arguments.
- logger
The logger that collects messages about project loading.
- returns
The list of loaded projects.
-
def
loadSynchronously(configDir: AbsolutePath, logger: Logger): List[Project]
Load all the projects from
configDir
synchronously.Load all the projects from
configDir
synchronously.- configDir
The base directory from which to load the projects.
- logger
The logger that collects messages about project loading.
- returns
The list of loaded projects.
-
def
readConfigurationFilesInBase(base: AbsolutePath, logger: Logger): List[AttributedPath]
Returns all the tracked files inside this directory, associated with their last modification time.
Returns all the tracked files inside this directory, associated with their last modification time.
- base
The base file or directory to track.
- returns
A map associating each tracked file with its last modification time.