aboutsummaryrefslogtreecommitdiff
path: root/spark-bukkit/build.gradle
blob: 794465b6ea6a35ce3cab880205f50375ccfdfb69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
dependencies {
    compile project(':spark-common')
    compile('net.kyori:text-adapter-bukkit:3.0.2') {
        exclude(module: 'text-api')
        exclude(module: 'text-serializer-gson')
    }
    compileOnly 'com.destroystokyo.paper:paper-api:1.15.2-R0.1-SNAPSHOT'
    
    // placeholders
    compileOnly 'me.clip:placeholderapi:2.10.3'
    compileOnly('be.maximvdw:MVdWPlaceholderAPI:3.0.1-SNAPSHOT') {
        exclude(module: 'MVdWUpdater')
    }
}

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