-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
77 lines (64 loc) · 2.59 KB
/
build.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
plugins {
id 'java'
}
repositories {
mavenCentral()
maven { url = 'https://repo.runelite.net' }
}
def runeLiteVersion = '1.6.30'
sourceCompatibility = 8
dependencies {
compileOnly group: 'net.runelite', name: 'client', version: runeLiteVersion
compileOnly 'org.projectlombok:lombok:1.18.4'
annotationProcessor 'org.projectlombok:lombok:1.18.4'
testImplementation 'junit:junit:4.12'
testImplementation 'org.slf4j:slf4j-simple:1.7.12'
testImplementation group: 'net.runelite', name: 'client', version: runeLiteVersion, {
exclude group: 'ch.qos.logback', module: 'logback-classic'
}
implementation "org.lwjgl:lwjgl:3.2.3"
implementation "org.lwjgl:lwjgl:3.2.3:natives-windows"
implementation "org.lwjgl:lwjgl:3.2.3:natives-windows-x86"
implementation "org.lwjgl:lwjgl:3.2.3:natives-linux"
implementation "org.lwjgl:lwjgl:3.2.3:natives-linux-arm32"
implementation "org.lwjgl:lwjgl:3.2.3:natives-linux-arm64"
implementation "org.lwjgl:lwjgl:3.2.3:natives-macos"
implementation "org.lwjgl:lwjgl-opengl:3.2.3"
implementation "org.lwjgl:lwjgl-opengl:3.2.3:natives-windows"
implementation "org.lwjgl:lwjgl-opengl:3.2.3:natives-windows-x86"
implementation "org.lwjgl:lwjgl-opengl:3.2.3:natives-linux"
implementation "org.lwjgl:lwjgl-opengl:3.2.3:natives-linux-arm32"
implementation "org.lwjgl:lwjgl-opengl:3.2.3:natives-linux-arm64"
implementation "org.lwjgl:lwjgl-opengl:3.2.3:natives-macos"
implementation "org.lwjgl:lwjgl-glfw:3.2.3"
implementation "org.lwjgl:lwjgl-glfw:3.2.3:natives-windows"
implementation "org.lwjgl:lwjgl-glfw:3.2.3:natives-windows-x86"
implementation "org.lwjgl:lwjgl-glfw:3.2.3:natives-linux"
implementation "org.lwjgl:lwjgl-glfw:3.2.3:natives-linux-arm32"
implementation "org.lwjgl:lwjgl-glfw:3.2.3:natives-linux-arm64"
implementation "org.lwjgl:lwjgl-glfw:3.2.3:natives-macos"
implementation 'org.lwjgl:lwjgl-jawt:3.2.3'
implementation files('lib/lwjgl3-awt-0.1.8-SNAPSHOT.jar')
implementation "it.unimi.dsi:fastutil:8.3.0"
implementation "org.joml:joml:1.9.24"
implementation 'org.apache.commons:commons-compress:1.20'
}
group = 'betterrenderer'
version = '1.8'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
try {
runelitePluginHubPackage {
minimize()
exclude(
'META-INF/INDEX.LIST',
'META-INF/*.SF',
'META-INF/*.DSA',
'META-INF/*.RSA',
'module-info.class'
)
}
} catch (MissingMethodException ignored) {
// ShadowJar plugin missing
}