-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
88 lines (73 loc) · 2.58 KB
/
build.gradle
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
plugins {
id 'java'
id 'io.github.goooler.shadow' version '8.1.8'
}
group = 'com.artillexstudios.axsellchest'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url = uri('https://hub.spigotmc.org/nexus/content/repositories/snapshots/')
}
maven {
url = uri('https://repo.rosewooddev.io/repository/public/' )
}
maven {
url = uri('https://repo.bg-software.com/repository/api/' )
}
maven {
url = uri('https://jitpack.io/')
}
maven {
url = uri('https://repo.alessiodp.com/releases/')
}
maven {
url = uri('https://repo.artillex-studios.com/releases')
}
maven {
url = uri('https://repo.codemc.org/repository/maven-public/')
}
maven {
url = uri('https://repo.codemc.org/repository/maven-snapshots')
}
}
dependencies {
implementation("com.artillexstudios.axapi:axapi:1.4.314:all")
implementation("com.zaxxer:HikariCP:5.1.0")
implementation("org.bstats:bstats-bukkit:3.0.2")
compileOnly('org.spigotmc:spigot-api:1.20.2-R0.1-SNAPSHOT')
compileOnly("org.slf4j:slf4j-api:2.0.9")
implementation("com.h2database:h2:2.3.230")
implementation("commons-io:commons-io:2.15.0")
implementation("org.apache.commons:commons-text:1.11.0")
implementation("dev.triumphteam:triumph-gui:3.1.7")
compileOnly("dev.rosewood:rosestacker:1.5.11")
compileOnly("com.bgsoftware:WildStackerAPI:2023.2")
compileOnly("com.github.MilkBowl:VaultAPI:1.7")
compileOnly("com.github.brcdev-minecraft:shopgui-api:3.0.0")
compileOnly("com.bgsoftware:SuperiorSkyblockAPI:2023.3")
compileOnly("com.github.Maxlego08:zShop-API:3.0.5") {
exclude module: "zMenu-API"
}
compileOnly("com.github.Gypopo:EconomyShopGUI-API:1.7.0")
compileOnly("world.bentobox:bank:1.7.1-SNAPSHOT")
compileOnly("world.bentobox:bentobox:2.1.1-SNAPSHOT")
compileOnly("com.artillexstudios:AxStacker:1.0.0")
}
processResources {
filesMatching("plugin.yml") {
expand(version: version)
}
}
compileJava {
options.compilerArgs += ["-parameters"]
}
shadowJar {
relocate("net.byteflux", "com.artillexstudios.axsellchest.libs.libby")
relocate("com.artillexstudios.axapi", "com.artillexstudios.axsellchest.libs.axapi")
relocate("org.h2", "com.artillexstudios.axsellchest.libs.h2")
relocate("revxrsal.commands", "com.artillexstudios.axsellchest.libs.lamp")
relocate("com.zaxxer", "com.artillexstudios.axsellchest.libs.hikaricp")
relocate("org.bstats", "com.artillexstudios.axsellchest.libs.bstats")
}
build.dependsOn shadowJar