aboutsummaryrefslogtreecommitdiff
path: root/spark-bungeecord/build.gradle
blob: 6098d8a659c8544d35d09d83a659b63442743200 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
dependencies {
    compile project(':spark-common')
    compile('net.kyori:adventure-platform-bungeecord:4.0.0-SNAPSHOT') {
        exclude(module: 'adventure-api')
        exclude(module: 'adventure-text-serializer-gson')
    }
    compileOnly 'net.md-5:bungeecord-api:1.16-R0.4-SNAPSHOT'
}

processResources {
    from(sourceSets.main.resources.srcDirs) {
        expand (
                'pluginVersion': project.pluginVersion,
                'pluginDescription': project.pluginDescription
        )
        include 'bungee.yml'
    }
}