-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
55 lines (45 loc) · 1.22 KB
/
build.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
plugins {
id("java")
id("io.papermc.paperweight.userdev") version "1.5.3"
id("com.github.johnrengelman.shadow") version "8.1.1"
id("net.minecrell.plugin-yml.bukkit") version "0.5.1"
}
group = "net.nonswag.tnl.enderchest"
version = "3.0.0"
repositories {
mavenCentral()
maven("https://repo.thenextlvl.net/releases")
maven("https://repo.papermc.io/repository/maven-public/")
}
dependencies {
paperweight.paperDevBundle("1.19.4-R0.1-SNAPSHOT")
compileOnly("org.projectlombok:lombok:1.18.26")
compileOnly("net.thenextlvl.core:annotations:1.0.0")
implementation("net.thenextlvl.core:api:3.1.10")
annotationProcessor("org.projectlombok:lombok:1.18.26")
}
tasks {
assemble {
dependsOn(reobfJar)
}
shadowJar {
minimize()
}
compileJava {
options.encoding = Charsets.UTF_8.name()
options.release.set(17)
}
javadoc {
options.encoding = Charsets.UTF_8.name()
}
processResources {
filteringCharset = Charsets.UTF_8.name()
}
}
bukkit {
name = "BetterEnderChest"
main = "net.thenextlvl.enderchest.BetterEnderChest"
apiVersion = "1.19"
website = "https://thenextlvl.net"
authors = listOf("NonSwag")
}