mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 18:47:03 +05:30
![renovate[bot]](/assets/img/avatar_default.png)
* chore(deps): update plugin org.jetbrains.compose to v1.1.0-alpha02 * Update for M3 Scaffold Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
34 lines
570 B
Kotlin
34 lines
570 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
plugins { id("org.jetbrains.compose") version "1.1.0-alpha02" apply false }
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Claw"
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
enableFeaturePreview("VERSION_CATALOGS")
|
|
|
|
include(":android")
|
|
|
|
include(":api")
|
|
|
|
include(":common")
|
|
|
|
include(":database")
|
|
|
|
include(":desktop")
|
|
|
|
include(":model")
|