Package org.gradle.api.internal.file.collections

Examples of org.gradle.api.internal.file.collections.SingleIncludePatternFileTree


                };
            }

            private MinimalFileTree getMatchingFiles(ModuleComponentArtifactMetaData artifact) {
                String patternString = pattern.getLocation(artifact).getPath();
                return new SingleIncludePatternFileTree(baseDir, patternString);
            }

        };
    }
View Full Code Here


    private boolean isInProgressFile(File file) {
        return getInProgressMarkerFile(file).exists();
    }

    private MinimalFileTree findFiles(String pattern) {
        return new SingleIncludePatternFileTree(baseDir, pattern);
    }
View Full Code Here

TOP

Related Classes of org.gradle.api.internal.file.collections.SingleIncludePatternFileTree

Copyright © 2018 www.massapicom. 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.