-
Notifications
You must be signed in to change notification settings - Fork 204
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
48 lines (45 loc) · 1.25 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
48 lines (45 loc) · 1.25 KB
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
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven { setUrl("https://jitpack.io") }
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
}
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven { url = uri("https://jitpack.io") }
maven {
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
}
}
}
// prepare for git submodules
val mediaServiceCore =
if (File(rootDir, "../MediaServiceCore").exists()) {
File(rootDir, "../MediaServiceCore")
} else {
File(rootDir, "./MediaServiceCore")
}
val sharedDir =
if (File(rootDir, "../MediaServiceCore/SharedModules").exists()) {
File(rootDir, "../MediaServiceCore/SharedModules")
} else {
File(rootDir, "./MediaServiceCore/SharedModules")
}
rootProject.name = "Echo"
include(
"app",
":kotlinYtmusicScraper",
":spotify",
":aiService",
// ":ffmpeg-kit", // Temporarily disabled for development
)
// Removed missing module dependencies