forked from MackenzieMolloy/ShopGUIPlus-SellGUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (28 loc) · 1.04 KB
/
build.gradle
File metadata and controls
37 lines (28 loc) · 1.04 KB
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
plugins {
id 'java'
id "com.github.johnrengelman.shadow" version "7.0.0"
}
group 'net.mackenziemolloy.shopguiplus.sellgui'
version '1.1.1'
repositories {
mavenLocal()
mavenCentral()
maven { url = 'https://papermc.io/repo/repository/maven-public/' }
maven { url = 'https://repo.mattstudios.me/artifactory/public/' }
maven { url = 'https://oss.sonatype.org/content/repositories/snapshots/' }
maven { url = 'https://repo.codemc.org/repository/maven-public/' }
maven { url = 'https://jitpack.io/' }
}
dependencies {
compileOnly "org.spigotmc:spigot-api:1.16.5-R0.1-SNAPSHOT"
compileOnly 'com.github.brcdev-minecraft:shopgui-api:2.1.1'
compileOnly 'org.jetbrains:annotations:22.0.0'
implementation "dev.triumphteam:triumph-gui:3.0.3"
implementation 'org.bstats:bstats-bukkit:2.2.1'
}
shadowJar {
relocate "dev.triumphteam.gui", "net.mackenziemolloy.shopguiplus.sellgui"
relocate "org.bstats", "net.mackenziemolloy.shopguiplus.sellgui.bstats"
minimize()
}
tasks.build.dependsOn tasks.shadowJar