Interface DependenciesMetadata

    • Method Detail

      • add

        void add​(String dependencyNotation)
        Add a dependency using the string notation: group:name:version.
        Parameters:
        dependencyNotation - the dependency
      • add

        void add​(Map<String,​String> dependencyNotation)
        Add a dependency using the map notation: group: group, name: name, version: version.
        Parameters:
        dependencyNotation - the dependency
      • add

        void add​(String dependencyNotation,
                 Action<DependencyMetadata> configureAction)
        Add a dependency using the string notation: group:name:version.
        Parameters:
        dependencyNotation - the dependency
        configureAction - action to configure details of the dependency - see DependencyMetadata
      • add

        void add​(Map<String,​String> dependencyNotation,
                 Action<DependencyMetadata> configureAction)
        Add a dependency using the map notation: group: group, name: name, version: version.
        Parameters:
        dependencyNotation - the dependency
        configureAction - action to configure details of the dependency - see DependencyMetadata