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