-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
60 lines (52 loc) · 1.47 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
56
57
58
59
60
plugins {
`java-library`
alias(libs.plugins.paperweight.userdev)
alias(libs.plugins.run.paper)
alias(libs.plugins.shadow)
}
group = "me.milesglitch.statusplugin"
version = "1.0.0"
description = "Support for Status mod by henkelmax for paper api"
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
}
repositories {
mavenCentral()
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
maven("https://jitpack.io")
maven("https://repo.papermc.io/repository/maven-public/")
maven("https://maven.maxhenkel.de/repository/public")
}
dependencies {
paperweight.paperDevBundle(libs.versions.paper)
implementation(libs.configbuilder)
}
tasks {
assemble {
dependsOn(reobfJar)
}
compileJava {
options.encoding = Charsets.UTF_8.name()
options.release.set(21)
}
javadoc {
options.encoding = Charsets.UTF_8.name()
}
processResources {
filteringCharset = Charsets.UTF_8.name()
val props = mapOf(
"name" to project.name,
"version" to project.version,
"description" to project.description,
"apiVersion" to "1.21"
)
inputs.properties(props)
filesMatching("plugin.yml") {
expand(props)
}
}
shadowJar {
fun reloc(pkg: String) = relocate(pkg, "me.milesglitch.statusplugin.libs.$pkg")
reloc("xyz.jpenilla:reflection-remapper")
}
}