mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-11-19 00:55:14 +01:00
21 lines
794 B
Groovy
21 lines
794 B
Groovy
dependencies {
|
|
compile project(path: ":common", configuration: 'shadow')
|
|
compileOnly project(":api")
|
|
|
|
compile "com.djrapitops:AbstractPluginFramework-bungeecord:$abstractPluginFrameworkVersion"
|
|
compile "org.bstats:bstats-bungeecord:$bstatsVersion"
|
|
|
|
compileOnly "net.md-5:bungeecord-api:$bungeeVersion"
|
|
compileOnly "com.imaginarycode.minecraft:RedisBungee:$redisBungeeVersion"
|
|
testCompile "net.md-5:bungeecord-api:$bungeeVersion"
|
|
testCompile "com.imaginarycode.minecraft:RedisBungee:$redisBungeeVersion"
|
|
|
|
testCompile project(path: ":common", configuration: 'testArtifacts')
|
|
}
|
|
|
|
shadowJar {
|
|
configurations = [project.configurations.compile]
|
|
|
|
relocate 'org.bstats', 'com.djrapitops.plan.utilities.metrics'
|
|
relocate 'org.slf4j', 'plan.org.slf4j'
|
|
} |