public class SkaffoldWatchParameters
extends java.lang.Object
| Constructor and Description |
|---|
SkaffoldWatchParameters(org.gradle.api.Project project) |
| Modifier and Type | Method and Description |
|---|---|
java.util.Set<java.nio.file.Path> |
getBuildIncludes()
A set of absolute paths to include with skaffold watching.
|
java.util.Set<java.nio.file.Path> |
getExcludes()
A set of absolute paths to exclude from skaffold watching.
|
java.util.Set<java.nio.file.Path> |
getIncludes()
A set of absolute paths to include with skaffold watching.
|
void |
setBuildIncludes(java.lang.Object paths)
Sets includes.
|
void |
setExcludes(java.lang.Object paths)
Sets excludes.
|
void |
setIncludes(java.lang.Object paths)
Sets includes.
|
@Inject public SkaffoldWatchParameters(org.gradle.api.Project project)
@Internal public java.util.Set<java.nio.file.Path> getBuildIncludes()
public void setBuildIncludes(java.lang.Object paths)
includes can be any suitable object describing file paths convertible by
Project.files(java.lang.Object...) (such as File, List<File>, or List<String>).paths - paths to set on includes@Internal public java.util.Set<java.nio.file.Path> getIncludes()
public void setIncludes(java.lang.Object paths)
includes can be any suitable object describing file paths convertible by
Project.files(java.lang.Object...) (such as File, List<File>, or List<String>).paths - paths to set on includes@Internal public java.util.Set<java.nio.file.Path> getExcludes()
public void setExcludes(java.lang.Object paths)
excludes can be any suitable object describing file paths convertible by
Project.files(java.lang.Object...) (such as File, List<File>, or List<String>).paths - paths to set on excludes