Package hudson.plugins.analysis.util

Examples of hudson.plugins.analysis.util.FileFinder


            return wrapped.getRemote();
        }

            @Override
        public String[] findFiles(final String pattern) throws IOException, InterruptedException {
            return wrapped.act(new FileFinder(pattern));
        }
View Full Code Here


        return result;
    }

    private void parserCollectionOfFiles(final File workspace, final ParserResult result) throws InterruptedException {
        log("Finding all files that match the pattern " + filePattern);
        String[] fileNames = new FileFinder(filePattern).find(workspace);

        if (fileNames.length == 0) {
            if (isMavenBuild) {
                log("No files found in " + workspace.getAbsolutePath() + " for pattern: " + filePattern);
            }
View Full Code Here

TOP

Related Classes of hudson.plugins.analysis.util.FileFinder

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.