-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
39 lines (33 loc) · 1.13 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
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '6.1.0'
}
group 'io.github.fisher2911'
version '1.0.1'
repositories {
mavenCentral()
maven { url = 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
maven { url = 'https://repo.mattstudios.me/artifactory/public/' }
maven { url = 'https://repo.codemc.io/repository/maven-public/' }
}
dependencies {
implementation 'org.jetbrains:annotations:22.0.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
compileOnly 'org.spigotmc:spigot-api:1.16.5-R0.1-SNAPSHOT'
compileOnly 'com.gmail.filoghost.holographicdisplays:holographicdisplays-api:2.4.0'
implementation 'dev.triumphteam:triumph-gui:3.0.3'
implementation 'org.bstats:bstats-bukkit:2.2.1'
}
test {
useJUnitPlatform()
}
shadowJar {
relocate 'dev.triumphteam.gui', 'io.github.fisher2911.lootchests.gui'
relocate 'org.bstats', 'io.github.fisher2911.lootchests.bstats'
}
shadowJar {
archiveBaseName.set('LootChests')
archiveClassifier.set('')
archiveVersion.set('')
}