-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
23 lines (21 loc) · 783 Bytes
/
settings.gradle
File metadata and controls
23 lines (21 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
rootProject.name = 'mawm'
System.setProperty("cubicchunks.isStandaloneBuild", "false")
// include CCC as subproject if it exists
//if (file("CubicChunksConverter").exists()) {
// println("Including build at ./CubicChunksConverter/ in composite build")
// includeBuild("CubicChunksConverter") {
// dependencySubstitution {
// substitute module('io.github.opencubicchunks:cubicchunksconverter') with project(':')
// }
// }
//}
includeBuild("CubicChunks") {
dependencySubstitution {
substitute module('io.github.opencubicchunks:cubicchunks') with project(':')
}
}
includeBuild("CubicChunksConverter") {
dependencySubstitution {
substitute module('io.github.opencubicchunks:cubicchunksconverter') with project(':')
}
}