Examples of TarFileTree


Examples of org.gradle.api.internal.file.archive.TarFileTree

    public FileTree zipTree(Object zipPath) {
        return new ZipFileTree(file(zipPath), getExpandDir());
    }

    public FileTree tarTree(Object tarPath) {
        return new TarFileTree(file(tarPath), getExpandDir());
    }
View Full Code Here

Examples of org.gradle.api.internal.file.archive.TarFileTree

    }

    public FileTree tarTree(Object tarPath) {
        ReadableResource res = getResources().maybeCompressed(tarPath);

        TarFileTree tarTree = new TarFileTree(res, getExpandDir(), fileSystem);
        return new FileTreeAdapter(tarTree);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.