mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-17 01:37:02 +05:30
17 lines
320 B
Kotlin
17 lines
320 B
Kotlin
rootProject.name = "Claw"
|
|
|
|
include(":api")
|
|
include(":app")
|
|
include(":common")
|
|
include(":database")
|
|
include(":desktop")
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
google()
|
|
gradlePluginPortal()
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
}
|
|
}
|