-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
100 lines (82 loc) · 2.3 KB
/
build.gradle.kts
File metadata and controls
100 lines (82 loc) · 2.3 KB
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
94
95
96
97
98
99
100
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.api.tasks.testing.logging.TestLogEvent
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.8.1-SNAPSHOT"
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 = "11.0.0"
}
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()
testLogging {
showStackTraces = true
exceptionFormat = TestExceptionFormat.FULL
events(TestLogEvent.STANDARD_OUT)
}
}
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)
}
}
}