13 lines
325 B
Kotlin
13 lines
325 B
Kotlin
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
// group = "com.avito.android.buildlogic"
|
|
|
|
dependencies {
|
|
implementation(projects.gradleExt)
|
|
implementation(libs.detektGradle)
|
|
// workaround for https://github.com/gradle/gradle/issues/15383
|
|
implementation(files(libs.javaClass.superclass.protectionDomain.codeSource.location))
|
|
}
|