forked from runelite/example-plugin
-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
44 lines (36 loc) · 906 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
39
40
41
42
43
44
plugins {
id 'java'
}
repositories {
mavenLocal()
maven {
url = 'https://repo.runelite.net'
}
maven {
url 'https://repo.maven.apache.org/maven2/'
}
mavenCentral()
}
def runeLiteVersion = 'latest.release'
sourceSets {
main {
resources {
srcDirs = ['src/main/resources']
}
}
}
dependencies {
compileOnly group: 'net.runelite', name:'client', version: runeLiteVersion
compileOnly 'org.projectlombok:lombok:1.18.30'
annotationProcessor 'org.projectlombok:lombok:1.18.30'
implementation 'com.google.cloud:google-cloud-translate:2.19.0'
testImplementation 'junit:junit:4.12'
testImplementation group: 'net.runelite', name:'client', version: runeLiteVersion
testImplementation group: 'net.runelite', name:'jshell', version: runeLiteVersion
}
group = 'com.RuneLingual'
version = '1.0-SNAPSHOT'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
options.release.set(11)
}