2020-04-25 18:30:14 +00:00
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
|
|
|
}
|
2022-08-14 14:43:28 +00:00
|
|
|
|
|
|
|
dependencies {
|
2024-01-28 21:29:55 +00:00
|
|
|
implementation(files(libs.javaClass.superclass.protectionDomain.codeSource.location))
|
2024-04-06 05:07:11 +00:00
|
|
|
implementation(files(androidx.javaClass.superclass.protectionDomain.codeSource.location))
|
|
|
|
implementation(files(compose.javaClass.superclass.protectionDomain.codeSource.location))
|
|
|
|
implementation(files(kotlinx.javaClass.superclass.protectionDomain.codeSource.location))
|
|
|
|
implementation(androidx.gradle)
|
|
|
|
implementation(kotlinx.gradle)
|
2024-01-28 21:29:55 +00:00
|
|
|
implementation(libs.detekt.gradlePlugin)
|
2022-08-14 14:43:28 +00:00
|
|
|
implementation(gradleApi())
|
|
|
|
}
|
|
|
|
|
2020-04-25 18:30:14 +00:00
|
|
|
repositories {
|
2023-01-19 03:33:56 +00:00
|
|
|
gradlePluginPortal()
|
2021-02-04 14:01:56 +00:00
|
|
|
mavenCentral()
|
2022-08-14 14:43:28 +00:00
|
|
|
google()
|
2020-04-25 18:30:14 +00:00
|
|
|
}
|