forked from openrs2/openrs2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
65 lines (61 loc) · 1.35 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
64
65
rootProject.name = "openrs2"
dependencyResolutionManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven(url = "https://repo.openrs2.org/repository/openrs2")
mavenLocal()
maven(url = "https://repo.openrs2.org/repository/openrs2-snapshots")
}
}
pluginManagement {
plugins {
id("com.github.ben-manes.versions") version "0.39.0"
id("com.github.jk1.dependency-license-report") version "1.17"
id("com.github.johnrengelman.shadow") version "7.0.0"
id("org.jetbrains.dokka") version "1.5.0"
id("org.jmailen.kotlinter") version "3.4.5"
kotlin("jvm") version "1.5.21"
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
enableFeaturePreview("VERSION_CATALOGS")
include(
"all",
"archive",
"asm",
"buffer",
"buffer-generator",
"cache",
"cache-550",
"cli",
"compress",
"compress-cli",
"conf",
"crc32",
"crypto",
"db",
"decompiler",
"deob",
"deob-annotations",
"deob-ast",
"deob-bytecode",
"deob-processor",
"deob-util",
"game",
"http",
"inject",
"json",
"net",
"nonfree",
"nonfree:client",
"nonfree:gl",
"nonfree:loader",
"nonfree:signlink",
"nonfree:unpack",
"nonfree:unpackclass",
"patcher",
"protocol",
"util",
"yaml"
)