forked from Iridium-Development/IridiumSkyblock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
124 lines (106 loc) · 4.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
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
plugins {
java
`maven-publish`
id("com.github.johnrengelman.shadow") version "7.1.2"
}
group = "com.iridium"
version = "3.3.4-OM-b2"
description = "IridiumSkyblock"
repositories {
mavenLocal()
mavenCentral()
maven("https://moyskleytech.com/debian/m2")
maven("https://repo.mvdw-software.com/content/groups/public/")
maven("https://hub.spigotmc.org/nexus/content/repositories/snapshots/")
maven("https://repo.extendedclip.com/content/repositories/placeholderapi/")
maven("https://ci.ender.zone/plugin/repository/everything/")
maven("https://jitpack.io")
maven("https://redempt.dev")
maven("https://nexus.iridiumdevelopment.net/repository/maven-releases/")
maven("https://papermc.io/repo/repository/maven-public/")
maven("https://repo.rosewooddev.io/repository/public/")
maven("https://hub.jeff-media.com/nexus/repository/jeff-media-public/")
maven("https://maven.enginehub.org/repo/")
}
dependencies {
// Dependencies that we want to shade in
implementation("org.jetbrains:annotations:23.0.0")
implementation("com.iridium:IridiumCore:1.6.12-OM")
implementation("org.bstats:bstats-bukkit:3.0.0")
implementation("com.github.Redempt:Crunch:1.0")
implementation("com.j256.ormlite:ormlite-core:6.1")
implementation("com.j256.ormlite:ormlite-jdbc:6.1")
implementation("de.jeff_media:SpigotUpdateChecker:1.3.0")
// Other dependencies that are not required or already available at runtime
compileOnly("org.projectlombok:lombok:1.18.22")
compileOnly("org.spigotmc:spigot-api:1.18-R0.1-SNAPSHOT")
compileOnly("net.ess3:EssentialsXSpawn:2.16.1")
compileOnly("com.github.MilkBowl:VaultAPI:1.7")
compileOnly("me.clip:placeholderapi:2.9.2")
compileOnly("com.gc:AdvancedSpawners:1.2.6")
compileOnly("dev.rosewood:rosestacker:1.5.9")
compileOnly("com.github.OmerBenGera:WildStackerAPI:master")
compileOnly("com.songoda:UltimateStacker:2.1.7")
compileOnly("com.songoda:EpicSpawners:7.1.2")
compileOnly("com.sk89q.worldedit:worldedit-bukkit:7.2.6-SNAPSHOT")
// Enable lombok annotation processing
annotationProcessor("org.projectlombok:lombok:1.18.22")
// Test dependencies
testImplementation(platform("org.junit:junit-bom:5.7.0"))
testImplementation("org.junit.jupiter:junit-jupiter:5.8.2")
testImplementation("com.github.seeseemelk:MockBukkit-v1.18:1.24.1")
}
tasks {
// "Replace" the build task with the shadowJar task (probably bad but who cares)
assemble {
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.j256.ormlite")
relocate("org.bstats")
relocate("de.jeff_media.updatechecker")
// Remove unnecessary files from the jar
minimize()
}
// Set UTF-8 as the encoding
compileJava {
options.encoding = "UTF-8"
}
// Process Placeholders for the plugin.yml
processResources {
filesMatching("**/plugin.yml") {
expand(rootProject.project.properties)
}
// Always re-run this task
outputs.upToDateWhen { false }
}
compileJava {
sourceCompatibility = JavaVersion.VERSION_1_8.toString()
targetCompatibility = JavaVersion.VERSION_1_8.toString()
}
compileTestJava {
sourceCompatibility = JavaVersion.VERSION_17.toString()
targetCompatibility = JavaVersion.VERSION_17.toString()
}
}
tasks.withType<JavaCompile>().configureEach {
javaCompiler.set(javaToolchains.compilerFor {
languageVersion.set(JavaLanguageVersion.of(17))
})
}
// Set the Java version and vendor
java {
toolchain {
vendor.set(JvmVendorSpec.ADOPTOPENJDK)
}
}
// Maven publishing
publishing {
publications.create<MavenPublication>("maven") {
from(components["java"])
}
}