blob: 30eebd9ab435054cbe3afff5f83ad6f1297d8e30 (
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.8.1') {
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'
}
}
|