generated from runelite/example-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
35 lines (29 loc) · 776 Bytes
/
build.gradle
File metadata and controls
35 lines (29 loc) · 776 Bytes
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
plugins {
id 'java-library'
}
repositories {
mavenLocal()
maven {
url = 'https://repo.runelite.net'
}
mavenCentral()
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of("11")
}
}
def runeLiteVersion = 'latest.release'
dependencies {
compileOnly group: 'net.runelite', name:'client', version: runeLiteVersion
implementation group: 'mysql', name: 'mysql-connector-java', version: '8.0.28'
compileOnly 'org.projectlombok:lombok:1.18.4'
annotationProcessor 'org.projectlombok:lombok:1.18.4'
testImplementation 'junit:junit:4.13.1'
testImplementation group: 'net.runelite', name:'client', version: runeLiteVersion
}
group = 'com.github.elrol.run4lessplugin'
version = '1.2'
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
}