-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
34 lines (29 loc) · 999 Bytes
/
settings.gradle.kts
File metadata and controls
34 lines (29 loc) · 999 Bytes
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
include(":androidApp")
include(":shared")
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
google()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://raw.githubusercontent.com/a-sit-plus/gradle-conventions-plugin/mvn/repo")
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
val vckDir = file("../vck")
val vckBuildFile = file("../vck/build.gradle.kts")
if (vckDir.isDirectory && vckBuildFile.exists()) {
logger.warn("Detected VC-K in ${vckDir.absolutePath}.")
logger.warn("Including VC-K as composite build.")
logger.warn("If you do not want this, move the VC-K to another location!")
includeBuild("../vck")
}
dependencyResolutionManagement {
repositories {
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://central.sonatype.com/repository/maven-snapshots/")
}
}