-
-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathbuild.gradle.kts
129 lines (111 loc) · 3.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
120
121
122
123
124
125
126
127
128
129
plugins {
java
`maven-publish`
id("io.github.goooler.shadow") version "8.1.8"
id("net.minecrell.plugin-yml.bukkit") version "0.6.0"
}
group = "com.iridium"
version = "4.1.0-B5.2"
description = "Skyblock Redefined"
repositories {
mavenCentral()
mavenLocal()
maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots/")
maven("https://ci.ender.zone/plugin/repository/everything/")
maven("https://nexus.iridiumdevelopment.net/repository/maven-releases/")
maven("https://papermc.io/repo/repository/maven-public/")
maven("https://jitpack.io")
maven("https://maven.enginehub.org/repo/")
}
dependencies {
// Dependencies that we want to shade in
implementation("org.jetbrains:annotations:26.0.1")
implementation("com.j256.ormlite:ormlite-core:6.1")
implementation("com.j256.ormlite:ormlite-jdbc:6.1")
implementation("com.iridium:IridiumTeams:2.5.12")
implementation("commons-lang:commons-lang:2.6")
// Other dependencies that are not required or already available at runtime
compileOnly("org.projectlombok:lombok:1.18.36")
compileOnly("org.spigotmc:spigot-api:1.21.4-R0.1-SNAPSHOT")
compileOnly("com.github.MilkBowl:VaultAPI:1.7.1")
compileOnly("net.ess3:EssentialsXSpawn:2.16.1")
compileOnly("com.sk89q.worldedit:worldedit-bukkit:7.2.13-SNAPSHOT")
// Enable lombok annotation processing
annotationProcessor("org.projectlombok:lombok:1.18.36")
}
bukkit {
main = "com.iridium.iridiumskyblock.IridiumSkyblock"
apiVersion = "1.13"
author = "Peaches_MLG"
authors = listOf("das_", "sh0inx", "SlashRemix", "Faun471")
website = "https://www.spigotmc.org/resources/62480"
loadBefore = listOf("Multiverse-Core")
depend = listOf("Vault")
softDepend = listOf(
"MVdWPlaceholderAPI",
"PlaceholderAPI",
"Essentials",
"EssentialsSpawn",
"RoseStacker",
"WorldEdit",
"ObsidianStacker"
)
commands {
register("iridiumskyblock") {
description = "Main plugin command"
aliases = listOf("is", "island")
}
}
}
tasks {
// Add the shadowJar task to the build task
build {
dependsOn(shadowJar)
}
shadowJar {
fun relocate(origin: String) =
relocate(origin, "com.iridium.iridiumskyblock.dependencies${origin.substring(origin.lastIndexOf('.'))}")
// Remove the archive classifier suffix
archiveClassifier.set("")
// Relocate dependencies
relocate("com.iridium.iridiumteams")
relocate("com.iridium.iridiumcore")
relocate("com.j256.ormlite")
relocate("de.jeff_media.updatechecker")
relocate("org.bstats")
relocate("org.intellij.lang.annotations")
relocate("org.jetbrains.annotations")
relocate("org.jnbt")
// Relocate IridiumCore dependencies
relocate("de.tr7zw.changeme.nbtapi")
relocate("com.iridium.iridiumcolorapi")
relocate("org.yaml.snakeyaml")
relocate("io.papermc.lib")
relocate("com.cryptomorin.xseries")
relocate("com.fasterxml.jackson")
relocate("org.apache.commons")
// Remove unnecessary files from the jar
minimize()
}
// Set UTF-8 as the encoding
compileJava {
options.encoding = "UTF-8"
}
compileJava {
sourceCompatibility = JavaVersion.VERSION_1_8.toString()
targetCompatibility = JavaVersion.VERSION_1_8.toString()
}
compileTestJava {
sourceCompatibility = JavaVersion.VERSION_17.toString()
targetCompatibility = JavaVersion.VERSION_17.toString()
}
}
// Maven publishing
publishing {
publications.create<MavenPublication>("maven") {
setGroupId("com.iridium")
setArtifactId("IridiumSkyblock")
setVersion(version)
artifact(tasks["shadowJar"])
}
}