-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
35 lines (30 loc) · 985 Bytes
/
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
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '7.1.2'
}
String classPath = 'com.zazsona.decorheads'
group classPath
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven { url "https://hub.spigotmc.org/nexus/content/repositories/snapshots" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url "https://libraries.minecraft.net/" }
maven { url "https://repo.codemc.org/repository/maven-public" }
maven { url 'https://jitpack.io/' }
}
dependencies {
implementation 'com.google.code.gson:gson:2.10'
implementation 'org.bstats:bstats-bukkit:3.0.0'
implementation 'com.github.Querz:NBT:6.1'
compileOnly "org.spigotmc:spigot-api:1.18-R0.1-SNAPSHOT"
compileOnly "com.mojang:authlib:1.5.25"
compileOnly 'org.jetbrains:annotations:23.0.0'
}
artifacts {
archives shadowJar
}
shadowJar {
relocate('org.bstats', classPath + '.bStats')
archiveClassifier.set(null)
}