-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
42 lines (38 loc) · 1.18 KB
/
Copy pathsettings.gradle.kts
File metadata and controls
42 lines (38 loc) · 1.18 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
rootProject.name = "typetype-server"
dependencyResolutionManagement {
repositories {
mavenLocal()
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
include(":server-admin")
include(":server-auth")
include(":server-cache")
include(":server-core")
include(":server-db")
include(":server-downloader")
include(":server-domain")
include(":server-http")
include(":server-playback")
include(":server-portability")
include(":server-sabr")
include(":server-test-support")
include(":server-services")
include(":server-token-gateway")
val localPipePipeExtractor = providers.gradleProperty("pipePipeExtractorPath")
.orNull
?.let { file(it) }
if (localPipePipeExtractor != null) {
require(localPipePipeExtractor.isDirectory) {
"pipePipeExtractorPath must point to a PipePipeExtractor checkout"
}
includeBuild(localPipePipeExtractor) {
dependencySubstitution {
substitute(module("com.github.InfinityLoop1308.PipePipeExtractor:extractor"))
.using(project(":extractor"))
substitute(module("com.github.Priveetee.PipePipeExtractor:extractor"))
.using(project(":extractor"))
}
}
}