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