forked from FunnySaltyFish/Transtation-KMP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
58 lines (49 loc) · 2.33 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
rootProject.name = "Transtation-KMP"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
/* maven ("https://maven.aliyun.com/repository/google") // Google仓库镜像
maven ("https://maven.aliyun.com/repository/public") // Maven Central仓库镜像
maven ("https://mirrors.tencent.com/repository/maven-google") // Google仓库镜像
maven ("https://mirrors.tencent.com/repository/central") // Maven Central仓库镜像
maven ("https://repo.huaweicloud.com/repository/maven/") // Huawei Maven仓库*/
maven("https://maven.aliyun.com/repository/public/")
maven("https://maven.aliyun.com/repository/google/")
maven("https://maven.aliyun.com/repository/jcenter/")
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://plugins.gradle.org/m2/")
maven (" https://jitpack.io")
google()
gradlePluginPortal()
mavenCentral()
}
}
dependencyResolutionManagement {
repositories {
/* maven (" https://jitpack.io")
maven ("https://maven.aliyun.com/repository/google") // Google仓库镜像
maven ("https://maven.aliyun.com/repository/public") // Maven Central仓库镜像
maven ("https://mirrors.tencent.com/repository/maven-google") // Google仓库镜像
maven ("https://mirrors.tencent.com/repository/central") // Maven Central仓库镜像
maven ("https://repo.huaweicloud.com/repository/maven/") // Huawei Maven仓库*/
maven("https://maven.aliyun.com/repository/public/")
maven("https://maven.aliyun.com/repository/google/")
maven("https://maven.aliyun.com/repository/jcenter/")
mavenCentral()
maven("https://repo1.maven.org/maven2/")
maven("https://jitpack.io")
maven("https://maven.google.com/")
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev/")
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
}
// 添加自定义脚本
includeBuild("build-logic")
include(":composeApp")
include(":base-kmp")
include(":ai")
include(":login")
include(":android-code-editor:editor", ":android-code-editor:language-base", ":android-code-editor:language-universal")
include(":code-editor")
// https://www.jianshu.com/p/a6a221e04d30
include(":local_repo:monet")