com.avito.test.gradle.module.Module.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of test-project Show documentation
Show all versions of test-project Show documentation
Collection of infrastructure libraries and gradle plugins of Avito Android project
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")
}
}