mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2024-12-23 00:15:06 +00:00
16 lines
No EOL
294 B
Groovy
16 lines
No EOL
294 B
Groovy
apply plugin: 'eclipse'
|
|
apply plugin: 'idea'
|
|
|
|
dependencies {
|
|
compile project(':Core')
|
|
compile 'org.bukkit:bukkit:1.8.8-R0.1-SNAPSHOT'
|
|
compile 'net.milkbowl.vault:VaultAPI:1.5'
|
|
}
|
|
|
|
shadowJar {
|
|
dependencies {
|
|
include(dependency(':Core'))
|
|
}
|
|
}
|
|
|
|
build.dependsOn(shadowJar) |