com.uber.infer.extension.InferPluginExtension.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 com.uber.infer.Constants
import org.gradle.api.Project
class InferPluginExtension {
EradicateExtension eradicate
InferExtension infer
InferPluginExtension(Project project) {
eradicate = project.extensions.create(Constants.EXTENSION_ERADICATE_NAME, EradicateExtension, project)
infer = project.extensions.create(Constants.EXTENSION_INFER_NAME, InferExtension, project)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy