Package fluxo.conf.dsl.container
Interface Container
-
- All Implemented Interfaces:
-
kotlin.Comparable
public interface Container implements Comparable<Container>
Generic lazy configuration container.
-
-
Method Summary
Modifier and Type Method Description abstract UnitapplyPlugins(String pluginIds)Adds plugins by ID to the project along with the container configuration. abstract UnitapplyPlugins(Provider<PluginDependency> plugins)Adds plugins by dependency to the project along with the container configuration. -
-
Method Detail
-
applyPlugins
abstract Unit applyPlugins(String pluginIds)
Adds plugins by ID to the project along with the container configuration.
-
applyPlugins
abstract Unit applyPlugins(Provider<PluginDependency> plugins)
Adds plugins by dependency to the project along with the container configuration. Convenient for usage with Gradle Version Catalogs.
-
-
-
-