Package org.gradle.api.internal.file

Examples of org.gradle.api.internal.file.SimpleFileCollection


        public boolean snapshot() {
            return false;
        }

        public FileCollection getPreviousOutputFiles() {
            return new SimpleFileCollection();
        }
View Full Code Here


            thisExecution = new TaskConfiguration(task, inputFilesSnapshot);
            outputFilesBefore = outputFilesSnapshotter.snapshot(task.getOutputs().getFiles());
        }

        public FileCollection getPreviousOutputFiles() {
            return lastExecution != null ? lastExecution.outputFilesSnapshot.getFiles() : new SimpleFileCollection();
        }
View Full Code Here

            for (Map.Entry<String, FileSnapshot> entry : snapshots.entrySet()) {
                if (entry.getValue() instanceof FileHashSnapshot) {
                    files.add(new File(entry.getKey()));
                }
            }
            return new SimpleFileCollection(files);
        }
View Full Code Here

        compile.setExcludes(TEST_EXCLUDES);
        compile.setSourceCompatibility("1.5");
        compile.setTargetCompatibility("1.5");
        compile.setDestinationDir(destDir);

        compile.setClasspath(new SimpleFileCollection(TEST_DEPENDENCY_MANAGER_CLASSPATH));
    }
View Full Code Here

TOP

Related Classes of org.gradle.api.internal.file.SimpleFileCollection

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.