Interface CheckAccessParameters
- All Superinterfaces:
org.gradle.workers.WorkParameters
public interface CheckAccessParameters
extends org.gradle.workers.WorkParameters
Parameters passed to the
CheckAccess work action via Gradle's worker API.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.gradle.workers.WorkParameters
org.gradle.workers.WorkParameters.None -
Method Summary
Modifier and TypeMethodDescriptionorg.gradle.api.file.ConfigurableFileCollectionorg.gradle.api.file.DirectoryPropertyorg.gradle.api.provider.Property<Boolean>org.gradle.api.file.RegularFileProperty
-
Method Details
-
getPropertiesForAccessModifier
- Returns:
- extra properties forwarded to
kohsuke.accmod.Checker
-
getClasspathToScan
org.gradle.api.file.ConfigurableFileCollection getClasspathToScan()- Returns:
- full classpath (compiled classes + compile deps) for type resolution during scanning
-
getDirToCheck
org.gradle.api.file.DirectoryProperty getDirToCheck()- Returns:
- the specific compiled-classes directory being inspected for violations
-
getIgnoreFailures
org.gradle.api.provider.Property<Boolean> getIgnoreFailures()- Returns:
trueto treat violations as warnings rather than build errors
-
getOutputFile
org.gradle.api.file.RegularFileProperty getOutputFile()- Returns:
- file where this work item writes its violation report
-