-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
35 lines (29 loc) · 801 Bytes
/
build.gradle.kts
File metadata and controls
35 lines (29 loc) · 801 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
import xyz.jpenilla.resourcefactory.bukkit.BukkitPluginYaml
plugins {
`java-library`
id("io.papermc.paperweight.userdev") version "2.0.0-beta.17"
id("xyz.jpenilla.resource-factory-bukkit-convention") version "1.3.0"
}
group = "net.exenco.lightshow"
version = "1.0.0"
description = "Professional, mod-free server light show system."
java {
toolchain.languageVersion = JavaLanguageVersion.of(21)
}
dependencies {
paperweight.paperDevBundle("1.21.11-R0.1-SNAPSHOT")
}
tasks {
compileJava {
options.release = 21
}
javadoc {
options.encoding = Charsets.UTF_8.name()
}
}
bukkitPluginYaml {
main = "net.exenco.lightshow.LightShowPlugin"
load = BukkitPluginYaml.PluginLoadOrder.POSTWORLD
authors.add("Exenco")
apiVersion = "1.21.11"
}