-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
246 lines (221 loc) · 11.3 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
import java.text.SimpleDateFormat
import java.time.Instant
import java.util.*
import kotlin.io.path.Path
import kotlin.io.path.listDirectoryEntries
plugins {
id("java")
//id("com.github.johnrengelman.shadow") version "8.1.1"
id("xyz.jpenilla.run-paper") version "2.2.4"
id("net.minecrell.plugin-yml.bukkit") version "0.6.0" // Generates plugin.yml
id("io.papermc.paperweight.userdev") version "1.7.1" apply false
id("io.github.goooler.shadow") version "8.1.7"
alias(libs.plugins.mia.publication)
}
class NMSVersion(val nmsVersion: String, val serverVersion: String)
infix fun String.toNms(that: String): NMSVersion = NMSVersion(this, that)
val SUPPORTED_VERSIONS: List<NMSVersion> = listOf(
"v1_18_R1" toNms "1.18.1-R0.1-SNAPSHOT",
"v1_18_R2" toNms "1.18.2-R0.1-SNAPSHOT",
"v1_19_R1" toNms "1.19.2-R0.1-SNAPSHOT",
"v1_19_R2" toNms "1.19.3-R0.1-SNAPSHOT",
"v1_19_R3" toNms "1.19.4-R0.1-SNAPSHOT",
"v1_20_R1" toNms "1.20.1-R0.1-SNAPSHOT",
"v1_20_R2" toNms "1.20.2-R0.1-SNAPSHOT",
"v1_20_R3" toNms "1.20.4-R0.1-SNAPSHOT",
"v1_20_R4" toNms "1.20.6-R0.1-SNAPSHOT",
"v1_21_R1" toNms "1.21-R0.1-SNAPSHOT"
)
val compiled = (project.findProperty("oraxen_compiled")?.toString() ?: "true").toBoolean()
val pluginPath = project.findProperty("oraxen_plugin_path")?.toString()
val devPluginPath = project.findProperty("oraxen_dev_plugin_path")?.toString()
val foliaPluginPath = project.findProperty("oraxen_folia_plugin_path")?.toString()
val spigotPluginPath = project.findProperty("oraxen_spigot_plugin_path")?.toString()
val pluginVersion: String by project
val commandApiVersion = "9.5.1"
val adventureVersion = "4.17.0"
val platformVersion = "4.3.3"
val googleGsonVersion = "2.10.1"
val apacheLang3Version = "3.14.0"
group = "io.th0rgal"
version = pluginVersion
allprojects {
apply(plugin = "java")
repositories {
mavenCentral()
maven("https://papermc.io/repo/repository/maven-public/") // Paper
maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots/") // Spigot
maven("https://oss.sonatype.org/content/repositories/snapshots") // Because Spigot depends on Bungeecord ChatComponent-API
maven("https://repo.dmulloy2.net/repository/public/") // ProtocolLib
maven("https://libraries.minecraft.net/") // Minecraft repo (commodore)
maven("https://repo.extendedclip.com/content/repositories/placeholderapi/") // PlaceHolderAPI
maven("https://maven.elmakers.com/repository/") // EffectLib
maven("https://hub.jeff-media.com/nexus/repository/jeff-media-public/") // CustomBlockData
maven("https://repo.triumphteam.dev/snapshots") // actions-code, actions-spigot
maven("https://mvn.lumine.io/repository/maven-public/") { metadataSources { artifact() } }// MythicMobs
maven("https://repo.mineinabyss.com/releases") // PlayerAnimator
maven("https://s01.oss.sonatype.org/content/repositories/snapshots") // commandAPI snapshots
maven("https://repo.oraxen.com/releases")
maven("https://repo.oraxen.com/snapshots")
maven("https://repo.auxilor.io/repository/maven-public/") // EcoItems
maven("https://maven.enginehub.org/repo/")
maven("https://jitpack.io") // JitPack
maven("https://nexus.phoenixdevt.fr/repository/maven-public/") // MMOItems
maven("https://repo.codemc.org/repository/maven-public/") // BlockLocker
mavenLocal()
}
dependencies {
val actionsVersion = "1.0.0-SNAPSHOT"
compileOnly("gs.mclo:java:2.2.1")
compileOnly("net.kyori:adventure-text-minimessage:$adventureVersion")
compileOnly("net.kyori:adventure-text-serializer-plain:$adventureVersion")
compileOnly("net.kyori:adventure-text-serializer-ansi:$adventureVersion")
compileOnly("net.kyori:adventure-platform-bukkit:$platformVersion")
compileOnly("com.comphenix.protocol:ProtocolLib:5.3.0-SNAPSHOT")
compileOnly("me.clip:placeholderapi:2.11.4")
compileOnly("me.gabytm.util:actions-core:$actionsVersion")
compileOnly("org.springframework:spring-expression:6.0.6")
compileOnly("io.lumine:Mythic-Dist:5.7.0-SNAPSHOT")
compileOnly("io.lumine:MythicCrucible:1.6.0-SNAPSHOT")
compileOnly("com.sk89q.worldedit:worldedit-bukkit:7.2.9")
compileOnly("commons-io:commons-io:2.11.0")
compileOnly("com.google.code.gson:gson:$googleGsonVersion")
compileOnly("com.ticxo.modelengine:ModelEngine:R4.0.4")
compileOnly("com.ticxo.modelengine:api:R3.1.8")
compileOnly(files("../libs/compile/BSP.jar"))
compileOnly("io.lumine:MythicLib:1.1.6") // Remove and add deps needed for Polymath
compileOnly("io.lumine:MythicLib-dist:1.6.2-SNAPSHOT")
compileOnly("net.Indyuce:MMOItems-API:6.9.5-SNAPSHOT")
compileOnly("org.joml:joml:1.10.5") // Because pre 1.19.4 api does not have this in the server-jar
compileOnly("com.willfp:EcoItems:5.23.0")
compileOnly("com.willfp:eco:6.65.5")
compileOnly("com.willfp:libreforge:4.36.0")
compileOnly("nl.rutgerkok:blocklocker:1.10.4-SNAPSHOT")
compileOnly("org.apache.commons:commons-lang3:$apacheLang3Version")
implementation("dev.jorel:commandapi-bukkit-shade:$commandApiVersion")
implementation("org.bstats:bstats-bukkit:3.0.0")
implementation("io.th0rgal:protectionlib:1.6.0")
implementation("com.github.stefvanschie.inventoryframework:IF:0.10.12")
implementation("com.jeff-media:custom-block-data:2.2.2")
implementation("com.jeff_media:MorePersistentDataTypes:2.4.0")
implementation("com.jeff-media:persistent-data-serializer:1.0")
implementation("org.jetbrains:annotations:24.1.0") { isTransitive = false }
implementation("dev.triumphteam:triumph-gui:3.1.10") { exclude("net.kyori") }
implementation("com.ticxo:PlayerAnimator:R1.2.8") { isChanging = true }
implementation("me.gabytm.util:actions-spigot:$actionsVersion") { exclude(group = "com.google.guava") }
}
}
dependencies {
implementation(project(path = ":core"))
SUPPORTED_VERSIONS.forEach { implementation(project(path = ":${it.nmsVersion}", configuration = "reobf")) }
}
java {
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
}
tasks {
compileJava {
options.encoding = Charsets.UTF_8.name()
}
javadoc {
options.encoding = Charsets.UTF_8.name()
}
processResources {
filesNotMatching(listOf("**/*.png", "**/*.ogg", "**/models/**", "**/textures/**", "**/font/**.json", "**/plugin.yml")) {
expand(mapOf(project.version.toString() to pluginVersion))
}
duplicatesStrategy = DuplicatesStrategy.INCLUDE
filteringCharset = Charsets.UTF_8.name()
}
runServer {
downloadPlugins {
url("https://ci.dmulloy2.net/job/ProtocolLib/lastSuccessfulBuild/artifact/build/libs/ProtocolLib.jar")
}
minecraftVersion("1.20.4")
}
shadowJar {
SUPPORTED_VERSIONS.forEach { dependsOn(":${it.nmsVersion}:reobfJar") }
archiveClassifier = null
relocate("org.bstats", "io.th0rgal.oraxen.shaded.bstats")
//relocate("dev.triumphteam.gui", "io.th0rgal.oraxen.shaded.triumphteam.gui")
//relocate("com.jeff_media", "io.th0rgal.oraxen.shaded.jeff_media")
//relocate("com.github.stefvanschie.inventoryframework", "io.th0rgal.oraxen.shaded.inventoryframework")
//relocate("me.gabytm.util.actions", "io.th0rgal.oraxen.shaded.actions")
//relocate("org.intellij.lang.annotations", "io.th0rgal.oraxen.shaded.intellij.annotations")
//relocate("org.jetbrains.annotations", "io.th0rgal.oraxen.shaded.jetbrains.annotations")
//relocate("com.udojava.evalex", "io.th0rgal.oraxen.shaded.evalex")
//relocate("com.ticxo.playeranimator", "io.th0rgal.oraxen.shaded.playeranimator")
//relocate("dev.jorel", "io.th0rgal.oraxen.shaded")
manifest {
attributes(
mapOf(
"Built-By" to System.getProperty("user.name"),
"Version" to pluginVersion,
"Build-Timestamp" to SimpleDateFormat("yyyy-MM-dd' 'HH:mm:ss.SSSZ").format(Date.from(Instant.now())),
"Created-By" to "Gradle ${gradle.gradleVersion}",
"Build-Jdk" to "${System.getProperty("java.version")} ${System.getProperty("java.vendor")} ${System.getProperty("java.vm.version")}",
"Build-OS" to "${System.getProperty("os.name")} ${System.getProperty("os.arch")} ${System.getProperty("os.version")}",
"Compiled" to (project.findProperty("oraxen_compiled")?.toString() ?: "true").toBoolean()
)
)
}
archiveFileName.set("oraxen-${pluginVersion}.jar")
archiveClassifier.set("")
}
compileJava.get().dependsOn(clean)
build.get().dependsOn(shadowJar)
build.get().dependsOn(publishToMavenLocal)
}
bukkit {
load = net.minecrell.pluginyml.bukkit.BukkitPluginDescription.PluginLoadOrder.POSTWORLD
main = "io.th0rgal.oraxen.OraxenPlugin"
version = pluginVersion
name = "Oraxen"
apiVersion = "1.18"
authors = listOf("th0rgal", "boy0000")
softDepend = listOf(
"ProtocolLib",
"LightAPI", "PlaceholderAPI", "MythicMobs", "MMOItems", "MythicCrucible", "MythicMobs", "BossShopPro",
"CrateReloaded", "ItemBridge", "WorldEdit", "WorldGuard", "Towny", "Factions", "Lands", "PlotSquared",
"NBTAPI", "ModelEngine", "ViaBackwards", "HuskClaims", "HuskTowns", "BentoBox"
)
loadBefore = listOf("Realistic_World")
permissions.create("oraxen.command") {
description = "Allows the player to use the /oraxen command"
default = net.minecrell.pluginyml.bukkit.BukkitPluginDescription.Permission.Default.TRUE
}
libraries = listOf(
"org.springframework:spring-expression:6.0.6",
"org.apache.httpcomponents:httpmime:4.5.13",
"org.joml:joml:1.10.5",
"net.kyori:adventure-text-minimessage:$adventureVersion",
"net.kyori:adventure-text-serializer-plain:$adventureVersion",
"net.kyori:adventure-text-serializer-ansi:$adventureVersion",
"net.kyori:adventure-platform-bukkit:$platformVersion",
"com.google.code.gson:gson:$googleGsonVersion",
"org.apache.commons:commons-lang3:$apacheLang3Version",
"team.unnamed:creative-api:1.7.3",
"team.unnamed:creative-serializer-minecraft:1.7.3",
"gs.mclo:java:2.2.1",
)
}
if (pluginPath != null) {
tasks {
val defaultPath = findByName("reobfJar") ?: findByName("shadowJar") ?: findByName("jar")
// Define the main copy task
val copyJarTask = register<Copy>("copyJar") {
this.doNotTrackState("Overwrites the plugin jar to allow for easier reloading")
dependsOn(shadowJar, jar)
from(defaultPath)
into(pluginPath)
doLast {
println("Copied to plugin directory $pluginPath")
Path(pluginPath).listDirectoryEntries()
.filter { it.fileName.toString().matches("oraxen-.*.jar".toRegex()) }
.filterNot { it.fileName.toString().endsWith("$pluginVersion.jar") }
.forEach { delete(it) }
}
}
// Make the build task depend on all individual copy tasks
named<DefaultTask>("build").get().dependsOn(copyJarTask)
}
}