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

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

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