-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathsettings.gradle.kts
29 lines (24 loc) · 960 Bytes
/
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
pluginManagement {
repositories {
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://maven.aliyun.com/repository/gradle-plugin")
maven("https://maven.aliyun.com/repository/central")
maven("https://maven.aliyun.com/repository/public/")
google()
gradlePluginPortal()
mavenCentral()
}
plugins {
kotlin("multiplatform").version(extra["kotlin.version"] as String) apply false
kotlin("plugin.serialization") version(extra["kotlin.version"] as String) apply false
id("org.jetbrains.kotlin.plugin.compose").version(extra["kotlin.version"] as String) apply false
id("org.jetbrains.compose").version(extra["compose.version"] as String) apply false
}
}
rootProject.name = "kra"
include(":modules:common")
include(":modules:abcde")
include(":modules:resde")
include(":modules:hapde")
include(":examples:findStr")
include("abcdecoder")