-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
93 lines (78 loc) · 2.96 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
plugins {
java
`maven-publish`
id("com.github.johnrengelman.shadow") version "8.1.1"
}
group = "com.iridium"
version = "1.0.7"
description = "IridiumChunkBusters"
repositories {
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://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/")
mavenCentral()
}
dependencies {
// Dependencies that we want to shade in
implementation("org.jetbrains:annotations:26.0.1")
implementation("com.iridium:IridiumCore:2.0.6")
implementation("org.bstats:bstats-bukkit:3.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.2")
// 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.3-R0.1-SNAPSHOT")
// Enable lombok annotation processing
annotationProcessor("org.projectlombok:lombok:1.18.36")
}
tasks {
// "Replace" the build task with the shadowJar task (probably bad but who cares)
jar {
dependsOn("shadowJar")
enabled = false
}
shadowJar {
// Remove the archive classifier suffix
archiveClassifier.set("")
// Relocate dependencies
relocate("com.fasterxml.jackson", "com.iridium.iridiumchunkbusters.dependencies.fasterxml")
relocate("com.j256.ormlite", "com.iridium.iridiumchunkbusters.dependencies.ormlite")
relocate("org.bstats", "com.iridium.iridiumchunkbusters.dependencies.bstats")
relocate("de.jeff_media", "com.iridium.iridiumchunkbusters.dependencies")
// 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()
}
}
// Maven publishing
publishing {
publications.create<MavenPublication>("maven") {
from(components["java"])
}
}