mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 16:27:06 +05:30
41 lines
817 B
Kotlin
41 lines
817 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")
|
|
includeGroup("dev.msfjarvis.paging")
|
|
}
|
|
}
|
|
google()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Claw"
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
enableFeaturePreview("VERSION_CATALOGS")
|
|
|
|
include(":android")
|
|
|
|
include(":api")
|
|
|
|
include(":common")
|
|
|
|
include(":database")
|
|
|
|
include(":desktop")
|
|
|
|
include(":model")
|