Class SkaffoldWatchParameters
- java.lang.Object
-
- com.google.cloud.tools.jib.gradle.skaffold.SkaffoldWatchParameters
-
public class SkaffoldWatchParameters extends java.lang.ObjectSkaffold specific JibExtension parameters for configuring files to watch.
-
-
Constructor Summary
Constructors Constructor Description SkaffoldWatchParameters(org.gradle.api.Project project)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method 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.voidsetBuildIncludes(java.lang.Object paths)Sets includes.voidsetExcludes(java.lang.Object paths)Sets excludes.voidsetIncludes(java.lang.Object paths)Sets includes.
-
-
-
Method Detail
-
getBuildIncludes
@Internal public java.util.Set<java.nio.file.Path> getBuildIncludes()
A set of absolute paths to include with skaffold watching.- Returns:
- a set of absolute paths
-
setBuildIncludes
public void setBuildIncludes(java.lang.Object paths)
Sets includes.includescan be any suitable object describing file paths convertible byProject.files(java.lang.Object...)(such asFile,List<File>, orList<String>).- Parameters:
paths- paths to set on includes
-
getIncludes
@Internal public java.util.Set<java.nio.file.Path> getIncludes()
A set of absolute paths to include with skaffold watching.- Returns:
- a set of absolute paths
-
setIncludes
public void setIncludes(java.lang.Object paths)
Sets includes.includescan be any suitable object describing file paths convertible byProject.files(java.lang.Object...)(such asFile,List<File>, orList<String>).- Parameters:
paths- paths to set on includes
-
getExcludes
@Internal public java.util.Set<java.nio.file.Path> getExcludes()
A set of absolute paths to exclude from skaffold watching.- Returns:
- a set of absolute paths
-
setExcludes
public void setExcludes(java.lang.Object paths)
Sets excludes.excludescan be any suitable object describing file paths convertible byProject.files(java.lang.Object...)(such asFile,List<File>, orList<String>).- Parameters:
paths- paths to set on excludes
-
-