forked from openrs2/openrs2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
63 lines (59 loc) · 1.12 KB
/
settings.gradle.kts
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
56
57
58
59
60
61
62
63
rootProject.name = "openrs2"
dependencyResolutionManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven(url = "https://repo.openrs2.org/repository/openrs2")
maven(url = "https://repo.runelite.net")
mavenLocal()
maven(url = "https://repo.openrs2.org/repository/openrs2-snapshots")
}
}
pluginManagement {
plugins {
kotlin("jvm") version "1.9.21"
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(
"all",
"archive",
"asm",
"buffer",
"buffer-generator",
"cache",
"cache-550",
"cache-cli",
"cli",
"compress",
"compress-cli",
"conf",
"crc32",
"crypto",
"db",
"decompiler",
"deob",
"deob-annotations",
"deob-ast",
"deob-bytecode",
"deob-processor",
"deob-util",
"game",
"http",
"inject",
"json",
"log",
"net",
"nonfree",
"nonfree:client",
"nonfree:gl",
"nonfree:loader",
"nonfree:signlink",
"nonfree:unpack",
"nonfree:unpackclass",
"patcher",
"protocol",
"util",
"xtea-plugin",
"yaml"
)