forked from MC-Machinations/TreasureMapsPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
119 lines (100 loc) · 2.83 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
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)
`maven-publish`
}
group = "me.machinemaker"
version = "0.7.1-STRIPPED"
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)
}
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
}
checkstyle {
configDirectory.set(rootProject.file(".checkstyle"))
isShowViolations = true
toolVersion = "10.12.5"
}
spotless {
java {
licenseHeaderFile(file("HEADER"))
}
}
publishing {
repositories {
maven {
name = "releases"
credentials {
username = providers.gradleProperty("shardNexusUser").get()
password = providers.gradleProperty("shardNexusPassword").get()
}
url = uri("https://repo.projectshard.dev/repository/releases/")
}
maven {
name = "snapshots"
credentials {
username = providers.gradleProperty("shardNexusUser").get()
password = providers.gradleProperty("shardNexusPassword").get()
}
url = uri("https://repo.projectshard.dev/repository/snapshots/")
}
}
publications {
create<MavenPublication>("maven") {
from(components["java"])
}
}
}
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 {
url("https://download.luckperms.net/1543/bukkit/loader/LuckPerms-Bukkit-5.4.130.jar")
}
}
runServer {
minecraftVersion(libs.versions.minecraft.get())
}
create("printVersion") {
doFirst {
println(version)
}
}
}