com.avito.test.gradle.files.BuildGradle.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.files
import com.avito.test.gradle.file
import java.io.File
internal fun File.build_gradle(mutator: File.() -> Unit = {}) = file("build.gradle").apply(mutator)
internal fun File.build_gradle_kts(mutator: File.() -> Unit = {}) = file("build.gradle.kts").apply(mutator)