Class PackageManagerConfiguration
-
- All Implemented Interfaces:
public final class PackageManagerConfigurationThe configuration for a package manager.
-
-
Method Summary
Modifier and Type Method Description final List<String>getMustRunAfter()A list of package manager names that this package manager must run after. final Map<String, String>getOptions()Custom configuration options for the package manager. final PackageManagerConfigurationmerge(PackageManagerConfiguration other)Merge this PackageManagerConfiguration with other. -
-
Method Detail
-
getMustRunAfter
final List<String> getMustRunAfter()
A list of package manager names that this package manager must run after. For example, this can be used, if another package manager generates files that this package manager requires to run correctly.
-
getOptions
final Map<String, String> getOptions()
Custom configuration options for the package manager. See the documentation of the respective class for available options.
-
merge
final PackageManagerConfiguration merge(PackageManagerConfiguration other)
Merge this PackageManagerConfiguration with other. Values of other take precedence.
-
-
-
-