All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.uber.infer.extension.InferExtension.groovy Maven / Gradle / Ivy

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