com.uber.infer.extension.InferExtension.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infer-plugin Show documentation
Show all versions of infer-plugin Show documentation
Gradle integration for infer static analyzer.
The newest version!
package com.uber.infer.extension
import org.gradle.api.Project
import org.gradle.api.file.FileCollection
class InferExtension {
/**
* The {@link FileCollection} to exclude from an infer run.
*/
FileCollection exclude
/**
* The {@link FileCollection} to include for an infer run.
*/
FileCollection include
InferExtension(Project project) {
exclude = project.files()
include = project.files()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy