summaryrefslogtreecommitdiff
path: root/settings.gradle.kts
blob: 217cc4f5753b63fcc5850e31d56f595ea214a69a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
pluginManagement {
  repositories {
    gradlePluginPortal()
    google()
    mavenCentral()
  }
}
dependencyResolutionManagement {
  // This causes WASM builds to fail with `Could not determine the dependencies of task ':kotlinNodeJsSetup'.`
  // repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
  repositories {
    google()
    mavenCentral()
  }
}
rootProject.name = "ColorPickerComposeDemo"
include(":app")
include(":colorpicker-compose")
include(":benchmark")
include("wasmApp")
include("docs")