blob: e7487d829d19a11d6c0b0921762e222ef40d44b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
dependencies {
compile project(':spark-common')
compile('me.lucko:adventure-platform-bungeecord:4.7.0') {
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'
}
}
|