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

com.avito.test.gradle.module.Module.kt Maven / Gradle / Ivy

Go to download

Collection of infrastructure libraries and gradle plugins of Avito Android project

There is a newer version: 2024.32
Show newest version
package com.avito.test.gradle.module

import com.avito.test.gradle.Generator
import com.avito.test.gradle.dependencies.GradleDependency
import com.avito.test.gradle.plugin.PluginsSpec

public interface Module : Generator {
    public val name: String
    public val imports: List
    public val plugins: PluginsSpec
    public val buildGradleExtra: String
    public val dependencies: Set
    public val modules: List
    public val useKts: Boolean
}

internal fun Module.imports(): String {
    return if (imports.isEmpty()) {
        ""
    } else {
        imports.joinToString(separator = "\n", postfix = "\n")
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy