Interface Container

  • All Implemented Interfaces:
    kotlin.Comparable

    
    public interface Container
     implements Comparable<Container>
                        

    Generic lazy configuration container.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract Unit applyPlugins(String pluginIds) Adds plugins by ID to the project along with the container configuration.
      abstract Unit applyPlugins(Provider<PluginDependency> plugins) Adds plugins by dependency to the project along with the container configuration.
      • Methods inherited from class kotlin.Comparable

        compareTo
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • 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.