compose-lobsters/settings.gradle.kts
Harsh Shandilya ce3dd8b7e7
database: initial commit
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
2021-06-04 15:06:37 +05:30

24 lines
403 B
Kotlin

pluginManagement {
repositories {
google()
mavenCentral()
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/compose/dev") }
gradlePluginPortal()
}
}
rootProject.name = "Claw"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
enableFeaturePreview("VERSION_CATALOGS")
include(":android")
include(":api")
include(":common")
include(":database")
include(":desktop")