mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 14:07:05 +05:30
36 lines
739 B
Kotlin
36 lines
739 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
google()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
maven("https://oss.sonatype.org/content/repositories/snapshots") {
|
|
content { includeGroup("org.pushing-pixels") }
|
|
}
|
|
google()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Claw"
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
enableFeaturePreview("VERSION_CATALOGS")
|
|
|
|
include(":android")
|
|
|
|
include(":api")
|
|
|
|
include(":common")
|
|
|
|
include(":database")
|
|
|
|
include(":desktop")
|