aboutsummaryrefslogtreecommitdiff
path: root/spark-bungeecord/build.gradle
blob: f94e65148f2b8a43c3561f7edd61f0bc850f59ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
dependencies {
    compile project(':spark-common')
    compileOnly 'net.md-5:bungeecord-api:1.12-SNAPSHOT'
}

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