forked from coco875/C2ME-fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
56 lines (51 loc) · 1.54 KB
/
settings.gradle
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
pluginManagement {
repositories {
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
gradlePluginPortal()
}
}
// Use gradle.properties for project properties
rootProject.name = properties['name']
includeBuild('FlowSched') {
dependencySubstitution {
substitute module('com.ishland.flowsched:flowsched') using project(':')
}
}
include 'tests'
include 'tests:test-mod'
include 'tests:vanilla-test'
// include 'tests:vanilla-modpack-test'
include 'tests:c2me-test'
// include 'tests:c2me-modpack-test'
// include 'tests:c2me-aof-test'
include 'tests:world-diff'
// include 'tests:c2me-modpack-devlaunch'
//include 'tests:c2me-aof-devlaunch'
//include 'libs'
include 'c2me-base'
include 'c2me-threading-worldgen'
include 'c2me-threading-chunkio'
//include 'c2me-threading-scheduling'
include 'c2me-threading-lighting'
include 'c2me-fixes-chunkio-threading-issues'
include 'c2me-fixes-general-threading-issues'
include 'c2me-fixes-worldgen-threading-issues'
//include 'c2me-fixes-worldgen-deadlocks'
//include 'c2me-fixes-worldgen-graal'
include 'c2me-fixes-worldgen-vanilla-bugs'
include 'c2me-opts-worldgen-vanilla'
//include 'c2me-opts-worldgen-biome-cache'
include 'c2me-opts-worldgen-general'
include 'c2me-opts-allocs'
include 'c2me-opts-math'
include 'c2me-opts-scheduling'
include 'c2me-opts-chunkio'
include 'c2me-opts-chunk-access'
include 'c2me-rewrites-chunk-serializer'
include 'c2me-rewrites-chunkio'
include 'c2me-server-utils'
include 'c2me-client-uncapvd'
include 'c2me-notickvd'