2020-04-25 14:30:14 -04:00
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
|
|
|
}
|
2022-08-14 16:43:28 +02:00
|
|
|
|
|
|
|
dependencies {
|
2024-04-06 11:07:11 +06:00
|
|
|
implementation(androidx.gradle)
|
|
|
|
implementation(kotlinx.gradle)
|
2024-06-07 03:48:35 +06:00
|
|
|
implementation(kotlinx.compose.compiler.gradle)
|
2024-08-19 18:11:14 +06:00
|
|
|
implementation(libs.spotless.gradle)
|
2022-08-14 16:43:28 +02:00
|
|
|
implementation(gradleApi())
|
2024-06-07 03:48:35 +06: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 16:43:28 +02:00
|
|
|
}
|
|
|
|
|
2020-04-25 14:30:14 -04:00
|
|
|
repositories {
|
2023-01-19 04:33:56 +01:00
|
|
|
gradlePluginPortal()
|
2021-02-04 09:01:56 -05:00
|
|
|
mavenCentral()
|
2022-08-14 16:43:28 +02:00
|
|
|
google()
|
2020-04-25 14:30:14 -04:00
|
|
|
}
|