-
Notifications
You must be signed in to change notification settings - Fork 60
/
build.gradle
38 lines (30 loc) · 1021 Bytes
/
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
plugins {
id 'java'
}
repositories {
mavenLocal()
maven {
url = 'https://repo.runelite.net'
}
mavenCentral()
}
def runeLiteVersion = '1.8.24.2'
def joglVersion = '2.4.0-rc-20220318'
dependencies {
compileOnly group: 'net.runelite', name:'client', version: runeLiteVersion
compileOnly group: 'net.runelite.jogl', name:'jogl-gldesktop-dbg', version: joglVersion
compileOnly 'org.projectlombok:lombok:1.18.20'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
testImplementation 'junit:junit:4.12'
testImplementation group: 'net.runelite', name:'client', version: runeLiteVersion
testImplementation group: 'net.runelite', name:'jshell', version: runeLiteVersion
testImplementation group: 'net.runelite.jogl', name:'jogl-gldesktop-dbg', version: joglVersion
testCompileOnly 'org.projectlombok:lombok:1.18.20'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.20'
}
group = 'rs117.hd'
version = '1.1.1'
sourceCompatibility = '1.8'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}