-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings.gradle.kts
34 lines (30 loc) · 1.1 KB
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
rootProject.name = "wavy-slider-project"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(":library")
// We want the project name to be "wavy-slider" but its directory/folder name to be "library".
// If the project name were not set here, it would be published with its directory/folder name ("library")
// (suffixed with proper platform type added by Kotlin Multiplatform).
project(":library").name = "wavy-slider"
include(":showcase:shared")
include(":showcase:androidApp")
include(":showcase:desktopApp")
include(":showcase:wasmApp")
include(":showcase:jsApp")
// :showcase:iosApp is managed by Xcode and its build system
// See https://kotlinlang.org/docs/multiplatform-mobile-understand-project-structure.html#root-project
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
dependencyResolutionManagement {
repositories {
google()
mavenLocal()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}