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

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