mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-14 22:55:55 +01:00
19b4da07b9
Adds run-paper plugin support as well as moves majority of logic to kotlin build scrips Co-authored-by: Josh Roy <10731363+JRoy@users.noreply.github.com>
16 lines
334 B
Groovy
16 lines
334 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.bukkit', 'com.earth2me.essentials.metrics'
|
|
}
|