mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-17 19:07:02 +05:30
17 lines
381 B
Kotlin
17 lines
381 B
Kotlin
plugins { `kotlin-dsl` }
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
gradlePluginPortal()
|
|
}
|
|
|
|
kotlinDslPluginOptions { experimentalWarning.set(false) }
|
|
|
|
// force compilation of Dependencies.kt so it can be referenced in buildSrc/build.gradle.kts
|
|
sourceSets.main {
|
|
java {
|
|
setSrcDirs(setOf(projectDir.parentFile.resolve("src/main/java")))
|
|
include("Dependencies.kt")
|
|
}
|
|
}
|