blob: f1a6db5159d753be9c500c68e6fe8dc584d79735 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
dependencies {
implementation project(':spark-common')
implementation('me.lucko:adventure-platform-bungeecord:4.9.4') {
exclude(module: 'adventure-api')
exclude(module: 'checker-qual')
exclude(module: 'annotations')
exclude(module: 'adventure-text-serializer-gson')
exclude(module: 'adventure-text-serializer-legacy')
}
compileOnly 'net.md-5:bungeecord-api:1.16-R0.4'
}
processResources {
from(sourceSets.main.resources.srcDirs) {
expand (
'pluginVersion': project.pluginVersion,
'pluginDescription': project.pluginDescription
)
include 'bungee.yml'
}
}
|