Interface CopySourceSpec

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      CopySourceSpec from​(java.lang.Object... sourcePaths)
      Specifies source files or directories for a copy.
      CopySourceSpec from​(java.lang.Object sourcePath, Closure configureClosure)
      Specifies the source files or directories for a copy and creates a child CopySourceSpec.
      CopySourceSpec from​(java.lang.Object sourcePath, Action<? super CopySpec> configureAction)
      Specifies the source files or directories for a copy and creates a child CopySpec.
    • Method Detail

      • from

        CopySourceSpec from​(java.lang.Object... sourcePaths)
        Specifies source files or directories for a copy. The given paths are evaluated as per Project.files(Object...).
        Parameters:
        sourcePaths - Paths to source files for the copy
      • from

        CopySourceSpec from​(java.lang.Object sourcePath,
                            @DelegatesTo(CopySpec.class)
                            Closure configureClosure)
        Specifies the source files or directories for a copy and creates a child CopySourceSpec. The given source path is evaluated as per Project.files(Object...) .
        Parameters:
        sourcePath - Path to source for the copy
        configureClosure - closure for configuring the child CopySourceSpec
      • from

        CopySourceSpec from​(java.lang.Object sourcePath,
                            Action<? super CopySpec> configureAction)
        Specifies the source files or directories for a copy and creates a child CopySpec. The given source path is evaluated as per Project.files(Object...) .
        Parameters:
        sourcePath - Path to source for the copy
        configureAction - action for configuring the child CopySpec