mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-13 06:15:08 +01:00
b2886969f0
Co-authored-by: MD <1917406+mdcfe@users.noreply.github.com> Co-authored-by: Josh Roy <10731363+JRoy@users.noreply.github.com>
16 lines
331 B
Groovy
16 lines
331 B
Groovy
plugins {
|
|
id("essentials.shadow-module")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly project(':EssentialsX')
|
|
implementation 'org.igniterealtime.smack:smack:3.2.1'
|
|
}
|
|
|
|
shadowJar {
|
|
dependencies {
|
|
include (dependency('org.igniterealtime.smack:smack'))
|
|
}
|
|
relocate 'org.bstats', 'com.earth2me.essentials.libs.bstats'
|
|
}
|