public interface IncrementalResolver
| Modifier and Type | Interface and Description |
|---|---|
static class |
IncrementalResolver.ForChangedFiles
An incremental resolver that retransforms any file that has changed but no other files.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<java.io.File> |
apply(org.gradle.api.Project project,
java.lang.Iterable<FileChange> changes,
java.io.File sourceRoot,
java.io.File targetRoot,
java.lang.Iterable<java.io.File> classPath)
Returns a list of files to transform after an incremental change.
|
java.util.List<java.io.File> apply(org.gradle.api.Project project,
java.lang.Iterable<FileChange> changes,
java.io.File sourceRoot,
java.io.File targetRoot,
java.lang.Iterable<java.io.File> classPath)
project - The current project.changes - An iterable of all changes that were found.sourceRoot - The source directory.targetRoot - The target directory.classPath - The class path available.