aboutsummaryrefslogtreecommitdiff
path: root/spark-bungeecord/build.gradle
blob: fbe971934c6cc24f825122527bc52df01df912ca (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:text-adapter-bungeecord:3.0.2') {
        exclude(module: 'text-api')
        exclude(module: 'text-serializer-gson')
    }
    compileOnly 'net.md-5:bungeecord-api:1.14-SNAPSHOT'
}

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