forked from nulli0n/ExcellentCrates-spigot
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle.kts
46 lines (38 loc) · 1.28 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
plugins {
val mewcraft = "1.0.0"
id("cc.mewcraft.repo-conventions") version mewcraft
id("cc.mewcraft.java-conventions") version mewcraft
id("cc.mewcraft.publishing-conventions") version mewcraft
id("cc.mewcraft.deploy-conventions") version mewcraft
id("cc.mewcraft.paper-plugins") version mewcraft
}
project.ext.set("name", "ExcellentCrates")
group = "su.nightexpress.excellentcrates"
version = "4.3.3"
repositories {
maven("https://jitpack.io") {
content {
includeGroup("com.github.decentsoftware-eu")
}
}
maven("https://repo.codemc.io/repository/maven-public/") {
content {
includeGroup("com.gmail.filoghost.holographicdisplays")
}
}
}
dependencies {
compileOnly("su.nexmedia", "NexEngine", "2.2.10")
// server api
compileOnly(libs.server.paper)
// libs that present as other plugins
compileOnly(libs.papi)
compileOnly(libs.vault) {
exclude("org.bukkit")
}
// libs that provides hologram feature
compileOnly("com.github.decentsoftware-eu", "decentholograms", "2.2.5")
compileOnly("com.gmail.filoghost.holographicdisplays", "holographicdisplays-api", "2.4.0")
// adds support for custom items from various plugins
compileOnly(libs.spatula.item)
}