-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle.kts
93 lines (75 loc) · 2.01 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import xyz.jpenilla.runpaper.task.RunServer
plugins {
java
checkstyle
idea
alias(libs.plugins.paper.userdev)
alias(libs.plugins.paper.run)
alias(libs.plugins.spotless)
alias(libs.plugins.shadow)
}
group = "me.machinemaker"
version = "0.7.2"
repositories {
mavenCentral()
maven("https://repo.papermc.io/repository/maven-public/")
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
dependencies {
paperweight.paperDevBundle(libs.versions.minecraft.map { "$it-R0.1-SNAPSHOT" })
implementation(libs.mirror)
implementation(libs.reflectionRemapper)
testImplementation(libs.junit.api)
testRuntimeOnly(libs.junit.engine)
testRuntimeOnly(libs.junit.platform)
}
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
}
checkstyle {
configDirectory.set(rootProject.file(".checkstyle"))
isShowViolations = true
toolVersion = "10.12.5"
}
spotless {
java {
licenseHeaderFile(file("HEADER"))
}
}
paperweight.reobfArtifactConfiguration = io.papermc.paperweight.userdev.ReobfArtifactConfiguration.MOJANG_PRODUCTION
tasks {
assemble {
dependsOn(shadowJar)
}
shadowJar {
isEnableRelocation = true
relocationPrefix = "me.machinemaker.treasuremapsplus.libs"
}
compileJava {
options.release = 21
options.encoding = Charsets.UTF_8.toString()
}
processResources {
filteringCharset = Charsets.UTF_8.toString()
filesMatching("paper-plugin.yml") {
expand("version" to version)
}
}
test {
useJUnitPlatform()
}
withType<RunServer> { // set for both runServer and runMojangMappedServer
systemProperty("com.mojang.eula.agree", "true")
downloadPlugins {
modrinth("luckperms", "v5.4.145-bukkit")
}
}
runServer {
minecraftVersion(libs.versions.minecraft.get())
}
register("printVersion") {
doFirst {
println(version)
}
}
}